UIconTextVertical constructor

const UIconTextVertical({
  1. required Widget leading,
  2. required Widget trailing,
  3. Key? key,
  4. Widget? subtitle,
  5. double spaceBetween = 8.0,
  6. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  8. MainAxisSize mainAxisSize = MainAxisSize.min,
  9. Color? iconColor,
  10. TextStyle? textStyle,
  11. TextStyle? subtitleStyle,
  12. VoidCallback? onTap,
  13. Color? backgroundColor,
  14. BorderRadius? borderRadius,
  15. double elevation = 0.0,
  16. EdgeInsets padding = const EdgeInsets.all(8),
})

Implementation

const UIconTextVertical({
  required this.leading,
  required this.trailing,
  super.key,
  this.subtitle,
  this.spaceBetween = 8.0,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisSize = MainAxisSize.min,
  this.iconColor,
  this.textStyle,
  this.subtitleStyle,
  this.onTap,
  this.backgroundColor,
  this.borderRadius,
  this.elevation = 0.0,
  this.padding = const EdgeInsets.all(8),
});