fixed3 static method

Widget fixed3(
  1. BuildContext context,
  2. NavBarConfig navBarConfig,
  3. Color? backgroundColor
)

Implementation

static Widget fixed3(
  BuildContext context,
  NavBarConfig navBarConfig,
  Color? backgroundColor,
) {
  final theme = context.watch<TThemeManager>().state;
  return Style10BottomNavBar(
    navBarConfig: navBarConfig,
    navBarDecoration: NavBarDecoration(
      color: backgroundColor ?? theme.popover,
    ),
  );
}