-
Notifications
You must be signed in to change notification settings - Fork 937
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FullScreen Webview without Appbar draws behind the status bar. #118
Comments
I found that SystemChrome.setEnabledSystemUIOverlays([]) hides the status bar, that should do it. |
Is there any workaround for keeping status bar? |
@sameerbakre you need to use SafeArea() plugin. |
This works great for me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
The text was updated successfully, but these errors were encountered: