diff --git a/app/lib/screens/registered_screen.dart b/app/lib/screens/registered_screen.dart index b5cbdcd8..eccddf3b 100644 --- a/app/lib/screens/registered_screen.dart +++ b/app/lib/screens/registered_screen.dart @@ -117,10 +117,10 @@ class _RegisteredScreenState extends State children: [ HomeCardWidget( name: 'Settings', icon: Icons.settings, pageNumber: 6), - HomeCardWidget( - name: 'Notifications', - icon: Icons.notifications, - pageNumber: 9), + // HomeCardWidget( + // name: 'Notifications', + // icon: Icons.notifications, + // pageNumber: 9), ], ), const SizedBox(height: 40), diff --git a/app/lib/widgets/layout_drawer.dart b/app/lib/widgets/layout_drawer.dart index 06f76e2a..82b4c3f5 100644 --- a/app/lib/widgets/layout_drawer.dart +++ b/app/lib/widgets/layout_drawer.dart @@ -198,17 +198,17 @@ class _LayoutDrawerState extends State { globals.tabController.animateTo(7); }, ), - ListTile( - minLeadingWidth: 10, - leading: const Padding( - padding: EdgeInsets.only(left: 10), - child: Icon(Icons.notifications, size: 18)), - title: const Text('Notifications'), - onTap: () { - Navigator.pop(context); - globals.tabController.animateTo(9); - }, - ), + // ListTile( + // minLeadingWidth: 10, + // leading: const Padding( + // padding: EdgeInsets.only(left: 10), + // child: Icon(Icons.notifications, size: 18)), + // title: const Text('Notifications'), + // onTap: () { + // Navigator.pop(context); + // globals.tabController.animateTo(9); + // }, + // ), ], ), ),