This is going to be a hot take, but I believe all web views are bad implementations for mobile apps. Primarily because a native app has all the styling, fonts, and client-side logic bundled with the app when it's installed.
A WebView loads those at runtime. So if you were intercept and track all the requests made by a WebView app, you'd see potentially hundreds of assets loading when you make a search query.
A native app doesn't need all those assets, it can make a simple API request to resolve this.
I can imagine a WebView could be bundled with the assets it needs, tho I doubt most people do this.
A WebView loads those at runtime. So if you were intercept and track all the requests made by a WebView app, you'd see potentially hundreds of assets loading when you make a search query.
A native app doesn't need all those assets, it can make a simple API request to resolve this.
I can imagine a WebView could be bundled with the assets it needs, tho I doubt most people do this.