diff --git a/lib/src/screens/web_view.dart b/lib/src/screens/web_view.dart index 7838457..066ffcc 100644 --- a/lib/src/screens/web_view.dart +++ b/lib/src/screens/web_view.dart @@ -33,22 +33,18 @@ class _WebViewScreenState extends State { ) ..loadRequest(Uri.parse(widget.link)); return Scaffold( - appBar: PopAppbar( - onPressed: () { - Navigator.pop(context); - }, - label: widget.label, - ), - body: Stack( - children: [ - const Center(child: CircularProgressIndicator()), - WebViewWidget(controller: controller), - ], - ) - - // isLoading - // ? const Center(child: CircularProgressIndicator()) - // : WebViewWidget(controller: controller), - ); + appBar: PopAppbar( + onPressed: () { + Navigator.pop(context); + }, + label: widget.label, + ), + body: Stack( + children: [ + const Center(child: CircularProgressIndicator()), + WebViewWidget(controller: controller), + ], + ), + ); } }