I am loading a webview in flutter using webview_flutter plugin from pub.dev For some urls it's loading a different (old?) version of the website.
How it should look (and does look on mobile browsers like Chrome and Safari): Browser(desired look)
How it does look in the Flutter App: Flutter WebView (current look)
Most notably the letters are capital (they used to be capital in an old version of the webpage) but there are some other minor differences too. I realise the bug here might be from the web side and not the Flutter side, I would just like to know what it is so that I can ask the Web team to handle it accordingly (I am a student and very new to all of this) Thank you. Code for WebView:
WebView(
initialUrl: url,
javascriptMode: JavascriptMode.unrestricted,
onPageFinished: (c) {
setState(() {
_isLoading = false;
});
},
),
Aucun commentaire:
Enregistrer un commentaire