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, + ), + ), + ), + ), + ), ); } }