MotionTabItem constructor

MotionTabItem({
  1. required String? label,
  2. required bool selected,
  3. required TextStyle textStyle,
  4. required Function callbackFunction,
  5. bool labelAlwaysVisible = false,
  6. Widget? badge,
  7. Widget? tabIconWidget,
  8. IconData? tabIconData,
  9. Color? tabIconColor,
  10. double? tabIconSize = 24,
})

Implementation

MotionTabItem({
  required this.label,
  required this.selected,
  required this.textStyle,
  required this.callbackFunction,
  this.labelAlwaysVisible = false,
  this.badge,
  this.tabIconWidget,
  this.tabIconData,
  this.tabIconColor,
  this.tabIconSize = 24,
});