fixed5 static method
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,
);
}