eurofins_flutter_ui 0.0.3
eurofins_flutter_ui: ^0.0.3 copied to clipboard
Modified Seed Project
Widget buildRequiredErrorText(String message) { return Text( textAlign: TextAlign.left, message, style: CustomTextTheme.custom( 13, CustomColor.customErrorColor(), FontWeight.w500), ); }
Widget buildListTile(BuildContext context, String iconPath, String title, String identifier) {
return ListTile(
leading: SvgPicture.asset(iconPath, width: 24, height: 24),
title: textBuilder(
title,
CustomTextTheme.body(14.0, FontWeight.normal),
TextAlign.left,
),
onTap: () => onTapFunction(context, identifier),
);
}
new line