Skip to content

Commit

Permalink
fix: unrendered 🩷
Browse files Browse the repository at this point in the history
  • Loading branch information
atnanahidiw committed Nov 10, 2023
1 parent 2da4400 commit 9cb5a63
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/lib/features/main/presentation/pages/main_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class _MainPageState extends State<MainPage> {
},
child: Center(
child: Text(
'From Ikatan Alumni TOKI with 🩷',
'From Ikatan Alumni TOKI with ❤️',
textAlign: TextAlign.center,
style: FontTheme.greyNormal14(),
),
Expand Down
16 changes: 9 additions & 7 deletions app/lib/features/main/presentation/pages/setting_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@ class _SettingPageState extends State<SettingPage> {
Button(
buttonType: ButtonType.primary,
onTap: () async {
await context.push(Uri(
path: '/register',
queryParameters: {
'isUpdateProfile': 'true',
},
).toString(),);
await context.push(
Uri(
path: '/register',
queryParameters: {
'isUpdateProfile': 'true',
},
).toString(),
);
},
text: 'Edit Profil',
),
Expand Down Expand Up @@ -115,7 +117,7 @@ class _SettingPageState extends State<SettingPage> {
},
child: Center(
child: Text(
'From Ikatan Alumni TOKI with 🩷',
'From Ikatan Alumni TOKI with ❤️',
textAlign: TextAlign.center,
style: FontTheme.greyNormal14(),
),
Expand Down

0 comments on commit 9cb5a63

Please sign in to comment.