Set webview bg as transparent

This commit is contained in:
Neeraj Gupta 2022-05-09 20:21:15 +05:30
parent 9d3c825828
commit ebf7590e8a
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -22,8 +22,11 @@ class _WebPageState extends State<WebPage> {
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;