fixed5 static method

Widget fixed5(
  1. BuildContext context,
  2. NavBarConfig navBarConfig,
  3. Color? activeColor,
  4. Color? backgroundColor,
)

Implementation

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