From 4fc602806c276e0e89fc1c4d5c80c2b109ab44b1 Mon Sep 17 00:00:00 2001 From: "k.mannweiler" <2012491@stud.hs-mannheim.de> Date: Wed, 1 Mar 2023 20:45:00 +0100 Subject: [PATCH] Fixed Visuals --- lib/services/pages_service.dart | 7 ++----- lib/widgets/drop_down.dart | 1 - 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/services/pages_service.dart b/lib/services/pages_service.dart index c3b1bd8..8f3ab37 100644 --- a/lib/services/pages_service.dart +++ b/lib/services/pages_service.dart @@ -16,14 +16,11 @@ const pages = { }, 'Timer': { 'page': IntervalTimerPage(), - 'icon': Icon(Icons.smoke_free_outlined, color: Colors.black) + 'icon': Icon(Icons.timer_outlined, color: Colors.black) }, 'Rückfall': { 'page': RelapsePage(), - 'icon': Icon( - Icons.timer_outlined, - color: Colors.black, - ) + 'icon': Icon(Icons.smoke_free_outlined, color: Colors.black), }, 'Scanner': { 'page': ScannerPage(), diff --git a/lib/widgets/drop_down.dart b/lib/widgets/drop_down.dart index 845c42c..5f06d89 100644 --- a/lib/widgets/drop_down.dart +++ b/lib/widgets/drop_down.dart @@ -13,7 +13,6 @@ class DropDown extends StatelessWidget { value: _items.isEmpty ? null : _items[0], icon: const Icon(Icons.arrow_downward), elevation: 16, - style: const TextStyle(color: Colors.deepPurple), onChanged: (String? value) { inputModel.relapseCategory = value ?? ''; },