Fixed Visuals

main
Kai Mannweiler 2023-03-01 20:45:00 +01:00
parent 2d88553ee8
commit 4fc602806c
2 changed files with 2 additions and 6 deletions

View File

@ -16,14 +16,11 @@ const pages = {
}, },
'Timer': { 'Timer': {
'page': IntervalTimerPage(), 'page': IntervalTimerPage(),
'icon': Icon(Icons.smoke_free_outlined, color: Colors.black) 'icon': Icon(Icons.timer_outlined, color: Colors.black)
}, },
'Rückfall': { 'Rückfall': {
'page': RelapsePage(), 'page': RelapsePage(),
'icon': Icon( 'icon': Icon(Icons.smoke_free_outlined, color: Colors.black),
Icons.timer_outlined,
color: Colors.black,
)
}, },
'Scanner': { 'Scanner': {
'page': ScannerPage(), 'page': ScannerPage(),

View File

@ -13,7 +13,6 @@ class DropDown extends StatelessWidget {
value: _items.isEmpty ? null : _items[0], value: _items.isEmpty ? null : _items[0],
icon: const Icon(Icons.arrow_downward), icon: const Icon(Icons.arrow_downward),
elevation: 16, elevation: 16,
style: const TextStyle(color: Colors.deepPurple),
onChanged: (String? value) { onChanged: (String? value) {
inputModel.relapseCategory = value ?? ''; inputModel.relapseCategory = value ?? '';
}, },