Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

[feature-request] Add cutom appBar, bottomNavigationBar and floatingActionButtonLocation #24

@TheOneWithTheBraid

Description

@TheOneWithTheBraid

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:

final Widget appBar;
final ResponsiveFloatingActionButtonLocation floatingActionButtomLocation;
final Widget bottomNavigationBar;

/// somehow implement `drawerDocked` or if possible simply extend the existing FloatingActionButtonLocation enum
enum ResponsiveFloatingActionButtonLocation {
    drawerDocked,
    ...
}


/// within the build() method you could remove the appBarButton from the drawer if needed by
Widget build() {
    widget.appBar.leading = null;
    widget.automaticallyImplyLeading = false;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions