61 lines
1.2 KiB
Dart
61 lines
1.2 KiB
Dart
|
|
import 'dart:collection';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
LinkedHashMap<String, dynamic> menu = LinkedHashMap.from({
|
|
"Schedule":
|
|
[{
|
|
"title": "Schedule\nVisit",
|
|
"icon": Icons.settings,
|
|
"route": "/Schedule",
|
|
},
|
|
{
|
|
"title": "Complete\Schedule",
|
|
"icon": Icons.calendar_today,
|
|
"route": "/Complete",
|
|
},
|
|
{
|
|
"title": "Provisional\Schedule",
|
|
"icon": Icons.calendar_today,
|
|
"route": "/Provisional",
|
|
},
|
|
{
|
|
"title": "Fast\Schedule",
|
|
"icon": Icons.calendar_today,
|
|
"route": "/Fast",
|
|
}],
|
|
"Consult":
|
|
[{
|
|
"title": "Consult",
|
|
"icon": Icons.search,
|
|
"route": "/consult",
|
|
},
|
|
{
|
|
"title": "Liberation\nConsult",
|
|
"icon": Icons.search,
|
|
"route": "/Liberation",
|
|
},
|
|
{
|
|
"title": "Access\nConsult",
|
|
"icon": Icons.search,
|
|
"route": "/Access",
|
|
},
|
|
{
|
|
"title": "Poeple\nConsult",
|
|
"icon": Icons.search,
|
|
"route": "/Poeple",
|
|
},
|
|
{
|
|
"title": "QR Code\nConsult",
|
|
"icon": Icons.search,
|
|
"route": "/qrcode",
|
|
}],
|
|
"Preferences":
|
|
[{
|
|
"title": "Preferences",
|
|
"icon": Icons.settings,
|
|
"route": "/preferences",
|
|
}],
|
|
|
|
}); |