Skip to content

Instantly share code, notes, and snippets.

@k4zek4ge
Created October 18, 2019 14:38
Show Gist options
  • Save k4zek4ge/4c8ca694a662e70c208c391d27e2e5e9 to your computer and use it in GitHub Desktop.
Save k4zek4ge/4c8ca694a662e70c208c391d27e2e5e9 to your computer and use it in GitHub Desktop.
return: padding: const EdgeInsets.all(8.0),
child: Table(
columnWidths: {0: IntrinsicColumnWidth()},
defaultVerticalAlignment: TableCellVerticalAlignment.middle,
children: [
TableRow(
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Icon(
Icons.check_circle,
color: RentMiColors.kRentMiBlue,
size: 16,
),
),
AutoSizeText(
title,
style: Styles.kCheckedItemWidgetTitle,
minFontSize: Styles.kCheckedItemWidgetTitle.fontSize,
maxLines: 2,
),
],
),
TableRow(
children: [
Container(),
AutoSizeText(subtitle,
style: Styles.kCheckedItemWidgetDescription,
minFontSize: Styles.kCheckedItemWidgetDescription.fontSize,
maxLines: 4)
],
)
]),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment