From fd3e5a72ac8f5c4185e3fc6cbf73529620a9d5cc Mon Sep 17 00:00:00 2001 From: Ayush Kumar Shaw Date: Mon, 13 Apr 2020 22:36:38 +0530 Subject: [PATCH] Added bottom AppBar in about page --- lib/pages/about.dart | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/pages/about.dart b/lib/pages/about.dart index f58fe174..81561183 100644 --- a/lib/pages/about.dart +++ b/lib/pages/about.dart @@ -173,6 +173,21 @@ class _AboutPageState extends State { ); }, ), + bottomNavigationBar: BottomAppBar( + elevation: 0.0, + child: Container( + color: Colors.grey[300], + height: 50.0, + child: Center( + child: Text( + 'Made with ❤️ by COPS', + style: TextStyle( + fontSize: 16.0, + ), + ), + ), + ), + ), ); } }