floating3 static method
Implementation
static Widget floating3(
BuildContext context,
NavBarConfig navBarConfig,
Color? activeColor,
Color? backgroundColor,
) {
final theme = context.watch<TThemeManager>().state;
return FloatingCircularDotNavBar(
navBarConfig: navBarConfig,
navBarDecoration: NavBarDecoration(
color: activeColor ?? theme.primary,
),
backgroundColor: backgroundColor ?? theme.popover,
);
// return FloatingStyle10NavBar(
// navBarConfig: navBarConfig,
// backgroundColor: backgroundColor ?? Colors.white.withValues(alpha: 0.9),
// );
}