-
What is the mechanism of Cordova?
- The user interface of a Cordova application is essentially a webview that occupies the entire screen and runs within a native container.
- The webview used by Cordova is the same one used by the native operating system, which means that only the native container is modified based on the operating system, while the web pages remain the same.
- Since web browsers that render web pages can vary from one operating system to another, the webview used by Cordova also varies depending on the platform.
- On iOS, the UIWebView class is used, while on Android, the android.webkit.webview class is used, and on Windows, the WebViewClass is used.
Be The First To Comment