Reputation: 11
In Android Native, we use skia. WebView uses skia yet. If React Native use v8 engine, webview use v8 engine. What's the performance difference between ReactNative and WebView?
Upvotes: 1
Views: 3081
Reputation: 72
Upvotes: 2
Reputation: 49
In React-Native, you write Javascript. The Javascript communicates with native components (Java on Android, Objective C on iOS, C# on Windows).
Whereas WebView is simply a way to show a webpage in an app. It loads the content of the URL provided in the given screen size. The content does not communicate with the native components and hence will not give you native mobile application look.
Upvotes: 1