You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I´m using the following code to launch the webview:
`return new MaterialApp(
debugShowCheckedModeBanner: false,
home: WebviewScaffold(
withZoom: true,
withJavascript: true,
withLocalStorage: true,
primary: true,
clearCache: false,
url: url,
));
}`
The problem is the website draws under the status bar. I can´t find a way to hide the status bar (not ideal) or insert some padding to the webview. How can this be accomplished, please?