File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
mdc_100_series/lib/supplemental Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -53,19 +53,17 @@ class ProductCard extends StatelessWidget {
53
53
mainAxisAlignment: MainAxisAlignment .end,
54
54
crossAxisAlignment: CrossAxisAlignment .center,
55
55
children: < Widget > [
56
- // TODO(larche): Make headline6 when available
57
56
Text (
58
57
product == null ? '' : product.name,
59
- style: theme.textTheme.button ,
58
+ style: theme.textTheme.headline6 ,
60
59
softWrap: false ,
61
60
overflow: TextOverflow .ellipsis,
62
61
maxLines: 1 ,
63
62
),
64
63
SizedBox (height: 4.0 ),
65
- // TODO(larche): Make subtitle2 when available
66
64
Text (
67
65
product == null ? '' : formatter.format (product.price),
68
- style: theme.textTheme.caption ,
66
+ style: theme.textTheme.subtitle2 ,
69
67
),
70
68
],
71
69
),
You can’t perform that action at this time.
0 commit comments