Skip to content

Commit

Permalink
feat(profile): implement profile screen widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhiXin18 authored Sep 21, 2024
1 parent 77b4fce commit a58e05a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/screens/profileScreen.dart
Original file line number Diff line number Diff line change
@@ -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),
);
}
}

0 comments on commit a58e05a

Please sign in to comment.