I’m not sure if there exist a way to use primarySwatch
inside widget like that but if you are looking for AppBar
color, it is actually the primaryColor
and you can get it using
Color color = Theme.of(context).primaryColor;
I’m not sure if there exist a way to use primarySwatch
inside widget like that but if you are looking for AppBar
color, it is actually the primaryColor
and you can get it using
Color color = Theme.of(context).primaryColor;