Skip to content

Commit

Permalink
Merge pull request #229 from humhub/f-hide-top-toolbar
Browse files Browse the repository at this point in the history
Hide top toolbar in auth browser
  • Loading branch information
luke- committed Sep 12, 2024
2 parents 73903f6 + 802246d commit eca5fce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/util/auth_in_app_browser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ class AuthInAppBrowser extends InAppBrowser {
AuthInAppBrowser({required this.manifest, required this.concludeAuth}) {
settings = InAppBrowserClassSettings(
browserSettings: InAppBrowserSettings(
hideUrlBar: false,
hideUrlBar: true,
hideToolbarTop: true,
toolbarTopBackgroundColor: HexColor(manifest.themeColor),
),
webViewSettings: InAppWebViewSettings(
Expand Down

0 comments on commit eca5fce

Please sign in to comment.