Fix post add button color on home screen

This commit is contained in:
Hank Grabowski 2022-12-17 13:33:30 -05:00
parent 16a77523f0
commit 266a98d2a9

View file

@ -80,7 +80,10 @@ class _HomeScreenState extends State<HomeScreen> {
onPressed: () {
context.push('/post/new');
},
icon: Icon(Icons.add),
icon: Icon(
Icons.add,
color: Theme.of(context).primaryColor,
),
),
],
),