From a58e05aca895f2ebd4b7d051debea5ebb4d073b7 Mon Sep 17 00:00:00 2001 From: ZhiXin18 <95596621+ZhiXin18@users.noreply.github.com> Date: Sat, 21 Sep 2024 15:00:16 +0800 Subject: [PATCH] feat(profile): implement profile screen widgets --- lib/screens/profileScreen.dart | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lib/screens/profileScreen.dart 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), + ); + } +} +