33 lines
807 B
Dart
33 lines
807 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import '../pages/interval_page.dart';
|
||
|
import '../pages/mood_page.dart';
|
||
|
import '../pages/relapse_page.dart';
|
||
|
import '../pages/scanner_page.dart';
|
||
|
import '../pages/sleep_page.dart';
|
||
|
|
||
|
const pages = {
|
||
|
'Stimmung': {
|
||
|
'page': MoodPage(),
|
||
|
'icon': Icon(Icons.mood_outlined, color: Colors.black)
|
||
|
},
|
||
|
'Schlaf': {
|
||
|
'page': SleepPage(),
|
||
|
'icon': Icon(Icons.bedtime_outlined, color: Colors.black)
|
||
|
},
|
||
|
'Timer': {
|
||
|
'page': IntervalTimerPage(),
|
||
|
'icon': Icon(Icons.smoke_free_outlined, color: Colors.black)
|
||
|
},
|
||
|
'Rückfall': {
|
||
|
'page': RelapsePage(),
|
||
|
'icon': Icon(
|
||
|
Icons.timer_outlined,
|
||
|
color: Colors.black,
|
||
|
)
|
||
|
},
|
||
|
'Scanner': {
|
||
|
'page': ScannerPage(),
|
||
|
'icon': Icon(Icons.camera_alt_outlined, color: Colors.black)
|
||
|
},
|
||
|
};
|