From 266a98d2a922b3810c1076827fd998f6bc1f3fa9 Mon Sep 17 00:00:00 2001 From: Hank Grabowski Date: Sat, 17 Dec 2022 13:33:30 -0500 Subject: [PATCH] Fix post add button color on home screen --- lib/screens/home.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/screens/home.dart b/lib/screens/home.dart index 8400142..f7bd1d8 100644 --- a/lib/screens/home.dart +++ b/lib/screens/home.dart @@ -80,7 +80,10 @@ class _HomeScreenState extends State { onPressed: () { context.push('/post/new'); }, - icon: Icon(Icons.add), + icon: Icon( + Icons.add, + color: Theme.of(context).primaryColor, + ), ), ], ),