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
{{ message }}
This repository was archived by the owner on Jan 15, 2026. It is now read-only.
n many cases, it's required not to have the FAB on top on desktops as well as having a fully customized app bar and a bottomNavigationBar. That's why I suggest the following changes:
finalWidget appBar;
finalResponsiveFloatingActionButtonLocation floatingActionButtomLocation;
finalWidget bottomNavigationBar;
/// somehow implement `drawerDocked` or if possible simply extend the existing FloatingActionButtonLocation enumenumResponsiveFloatingActionButtonLocation {
drawerDocked,
...
}
/// within the build() method you could remove the appBarButton from the drawer if needed byWidgetbuild() {
widget.appBar.leading =null;
widget.automaticallyImplyLeading =false;
}