Skip to content

Commit

Permalink
Remove commented-out navigation code from DashboardPage
Browse files Browse the repository at this point in the history
  • Loading branch information
Mozart299 committed Dec 17, 2024
1 parent cf065ac commit 32ca3d5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions mobile-v3/lib/src/app/dashboard/pages/dashboard_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ class _DashboardPageState extends State<DashboardPage> {
),
SizedBox(width: 8),
GestureDetector(
onTap: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (context) {
return ProfilePage();
},
),
),
// onTap: () => Navigator.of(context).push(
// MaterialPageRoute(
// builder: (context) {
// return ProfilePage();
// },
// ),
// ),
child: BlocBuilder<UserBloc, UserState>(
builder: (context, state) {
if (state is UserLoaded) {
Expand Down

0 comments on commit 32ca3d5

Please sign in to comment.