Niftile constructor

const Niftile({
  1. Key? key,
  2. required TabItem item,
  3. double? height,
  4. double? width,
  5. Key? niftileKey,
  6. void onTap()?,
  7. bool isFloating = true,
  8. Color? selectedColor,
  9. Color? unSelectedColor,
  10. BorderRadiusGeometry? borderRadius,
  11. bool showLeading = true,
  12. bool showTrailing = true,
  13. bool iconMode = false,
  14. bool buttonMode = false,
  15. double? buttonModeWidth = 150,
  16. TextStyle? titleStyle = const TextStyle(),
  17. TextStyle? subTitleStyle = const TextStyle(),
  18. IconData? childrenIcon = CupertinoIcons.arrow_up_arrow_down,
  19. Airoll? altAiroll,
  20. AlignmentGeometry? alignment,
})

Implementation

const Niftile({
  Key? key,
  required this.item,
  this.height,
  this.width,
  this.niftileKey,
  this.onTap,
  this.isFloating = true,
  this.selectedColor,
  this.unSelectedColor,
  this.borderRadius,
  this.showLeading = true,
  this.showTrailing = true,
  this.iconMode = false,
  this.buttonMode = false,
  this.buttonModeWidth = 150,
  this.titleStyle = const TextStyle(),
  this.subTitleStyle = const TextStyle(),
  this.childrenIcon = CupertinoIcons.arrow_up_arrow_down,
  this.altAiroll,
  this.alignment,
}) : super(key: key);