In 6.4 is there a reason we used fontSize instead of Theme?
const Text(
'No Groceries',
style: TextStyle(fontSize: 21.0),
),
vs
const Text(
'No Groceries',
style: Theme.of(context).textTheme.headline6, // or body2 or something else?
),