diff --git a/lib/ui/web_page.dart b/lib/ui/web_page.dart index 5549c74a04978bb3d6420b3d92bab494f937a0de..eb767becbbbed7a065819216559d60bdded7bd3e 100644 --- a/lib/ui/web_page.dart +++ b/lib/ui/web_page.dart @@ -22,8 +22,11 @@ class _WebPageState extends State { title: Text(widget.title), actions: [_hasLoadedPage ? Container() : loadWidget], ), + backgroundColor: Colors.transparent, body: InAppWebView( initialUrlRequest: URLRequest(url: Uri.parse(widget.url)), + initialOptions: InAppWebViewGroupOptions( + crossPlatform: InAppWebViewOptions(transparentBackground: true)), onLoadStop: (c, url) { setState(() { _hasLoadedPage = true;