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