We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca5e635 commit 18b5a53Copy full SHA for 18b5a53
lib/controls/menu_drawer.dart
@@ -53,13 +53,23 @@ class MenuDrawer extends StatelessWidget {
53
},
54
),
55
const Divider(),
56
+ ListTile(
57
+ leading: const Icon(Icons.mail),
58
+ title: const Text("Communication"),
59
+ onTap: () {
60
+ Scaffold.of(context).closeDrawer();
61
+ setPageIndex(PageList.communication.index);
62
+ },
63
+ ),
64
+ const Divider(),
65
ListTile(
66
leading: const Icon(Icons.info),
67
title: const Text("About"),
68
onTap: () {
69
Scaffold.of(context).closeDrawer();
70
setPageIndex(PageList.about.index);
- }, ),
71
72
73
],
74
)
75
);
0 commit comments