diff --git a/lib/screens/profileScreen.dart b/lib/screens/profileScreen.dart new file mode 100644 index 0000000..ccf4424 --- /dev/null +++ b/lib/screens/profileScreen.dart @@ -0,0 +1,16 @@ +import 'package:flutter/material.dart'; + +import '../widgets/navigationBar.dart'; + +class ProfileScreen extends StatelessWidget { + const ProfileScreen({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.white, + bottomNavigationBar: MyBottomNavigationBar(selectedIndexNavBar: 1), + ); + } +} +