skip to Main Content

Am trying to add flutter_inappwebview 6.0.0 my codes has no error but web page is not loading

here is my code class SettingsPage extends StatefulWidget { const SettingsPage({Key? key}) : super(key: key); @override _SettingsPageState createState() => _SettingsPageState(); } class _SettingsPageState extends State { InAppWebViewController? webViewController; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text("Settings"),…

VIEW QUESTION
Back To Top
Search