From 9c7f5928205624a1cd41a4973ec198246263240f Mon Sep 17 00:00:00 2001 From: Josh Smith Date: Mon, 16 Mar 2020 00:36:38 -0700 Subject: [PATCH] Add subtitle to location tracking widget --- lib/src/ui/screens/home/home.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/src/ui/screens/home/home.dart b/lib/src/ui/screens/home/home.dart index dd299cd..451524a 100644 --- a/lib/src/ui/screens/home/home.dart +++ b/lib/src/ui/screens/home/home.dart @@ -32,7 +32,9 @@ class _HomeScreenState extends State { newPreferences.trackLocation = value; context.bloc().add(UpdatePreferences(newPreferences)); }, - secondary: const FaIcon(FontAwesomeIcons.locationArrow), + secondary: const FaIcon( + FontAwesomeIcons.locationArrow, + ), ); }