RegionBar constructor
RegionBar({})
Implementation
RegionBar(
{super.key,
required this.onChanged,
required this.menuTexts,
Color? bgColor,
this.controller,
Color? labelColor,
TextStyle? labelStyle,
Color? unselectedLabelColor,
Color? selectedColor})
: bgColor = bgColor ?? Get.find<AppColors>().btnColor,
selectedColor = selectedColor ?? Get.find<AppColors>().backgroundColor,
labelColor = labelColor ?? Get.find<AppColors>().textColor,
unselectedLabelColor =
unselectedLabelColor ?? Get.find<AppColors>().hintColor,
labelStyle = labelStyle ?? Get.find<AppFonts>().S();