You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Flutter Development (flutter-dev)
Hi,
I create loader in webView app using Fllutter. But some time loader lags... like after loading pages it continuous shows loader <CODE Mention Below> any suggestion to resolve this or any modification or other method Kindly revert with the code. Thanks
class MyApp extends StatefulWidget { // This widget is the root of your application. @override WebViewExampleState createState() => WebViewExampleState(); } class WebViewExampleState extends State<MyApp> { num position = 1 ; final key = UniqueKey(); @override void initState() { super.initState(); // Enable hybrid composition. if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView(); } @override Widget build(BuildContext context) { return SafeArea( child: Scaffold( body: IndexedStack( index: position, children: <Widget>[