CustomRowTextWidget constructor
const
CustomRowTextWidget({
- Key? key,
- required String title,
- required String subtitle,
- dynamic titleOnTap()?,
- dynamic subTitleOnTap()?,
- TextStyle? titleStyle,
- TextStyle? subtitleStyle,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
Implementation
const CustomRowTextWidget({
Key? key,
required this.title,
required this.subtitle,
this.titleOnTap,
this.subTitleOnTap,
this.titleStyle,
this.subtitleStyle,
this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
this.crossAxisAlignment = CrossAxisAlignment.center
}) : super(key: key);