BartBottomBar.cupertino constructor
BartBottomBar.cupertino({})
Implementation
factory BartBottomBar.cupertino({
Color? bgColor,
Color? selectedItemColor,
Color? unselectedItemColor,
BottomNavigationBarType? type,
double iconSize = 24,
double? height,
Border? border,
bool enableHapticFeedback = true,
int index = 0,
}) =>
BartBottomBar._(
bottomBarTheme: CupertinoBottomBarTheme().copyWith(
bgColor: bgColor,
selectedItemColor: selectedItemColor,
unselectedItemColor: unselectedItemColor,
type: type,
iconSize: iconSize,
height: height,
border: border,
),
enableHapticFeedback: enableHapticFeedback,
theme: Theme.cupertino,
currentIndex: index,
);