Fixed Visuals
parent
2d88553ee8
commit
4fc602806c
|
@ -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(),
|
||||||
|
|
|
@ -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 ?? '';
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue