diff --git a/lib/src/routes/lostandfoundfeedpage.dart b/lib/src/routes/lostandfoundfeedpage.dart index 82a9ed84..96e31249 100644 --- a/lib/src/routes/lostandfoundfeedpage.dart +++ b/lib/src/routes/lostandfoundfeedpage.dart @@ -178,7 +178,7 @@ class _LostpageState extends State { return Center( child: CircularProgressIndicatorExtended( - label: Text("Loading..."), + label: Text("Loading..."), )); } diff --git a/lib/src/utils/customappbar.dart b/lib/src/utils/customappbar.dart index 744905a5..9bb5cad0 100644 --- a/lib/src/utils/customappbar.dart +++ b/lib/src/utils/customappbar.dart @@ -77,7 +77,11 @@ class _CustomAppBarState extends State { })); } - actionButtons.add(_buildIcon(Icons.notifications_outlined, () {})); + actionButtons.add(_buildIcon(Icons.notifications_outlined, () { + var navi = Navigator.of(context); + navi.pop(); + navi.pushNamed('/notifications'); + })); firstBuild = false; }