getLeftSide method
Implementation
Row getLeftSide(TUIThemeData theme) {
return Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
margin: const EdgeInsets.only(right: 16.0),
child: getIcon(theme),
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
style.title,
style: theme.typography.body7,
),
...style.description!.map(
(e) => Text(e, style: theme.typography.heading6),
),
getFooter(theme),
],
),
],
);
}