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 ?? ''; },