bottomNavigationBar function

Widget bottomNavigationBar(
  1. AppModel app,
  2. BuildContext context, {
  3. required MemberModel? member,
  4. BackgroundModel? backgroundOverride,
  5. RgbModel? popupMenuBackgroundColorOverride,
  6. required List<AbstractMenuItemAttributes> items,
  7. Key? key,
})

Implementation

Widget bottomNavigationBar(
  AppModel app,
  BuildContext context, {
  required MemberModel? member,
  BackgroundModel? backgroundOverride,
  RgbModel? popupMenuBackgroundColorOverride,
  required List<AbstractMenuItemAttributes> items,
  Key? key,
}) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .bottomNavigationBarStyle()
        .bottomNavigationBar(
          app,
          context,
          member: member,
          backgroundOverride: backgroundOverride,
          popupMenuBackgroundColorOverride: popupMenuBackgroundColorOverride,
          items: items,
          key: key,
        );