From 9cb5a6396ffc1c5ca26ac546652685b6d81e110f Mon Sep 17 00:00:00 2001 From: Mirza Widihananta Date: Fri, 10 Nov 2023 17:40:03 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20unrendered=20=F0=9F=A9=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/presentation/pages/main_page.dart | 2 +- .../main/presentation/pages/setting_page.dart | 16 +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/app/lib/features/main/presentation/pages/main_page.dart b/app/lib/features/main/presentation/pages/main_page.dart index 148556a..832ccd1 100644 --- a/app/lib/features/main/presentation/pages/main_page.dart +++ b/app/lib/features/main/presentation/pages/main_page.dart @@ -117,7 +117,7 @@ class _MainPageState extends State { }, child: Center( child: Text( - 'From Ikatan Alumni TOKI with 🩷', + 'From Ikatan Alumni TOKI with ❤️', textAlign: TextAlign.center, style: FontTheme.greyNormal14(), ), diff --git a/app/lib/features/main/presentation/pages/setting_page.dart b/app/lib/features/main/presentation/pages/setting_page.dart index af3a156..a1a28c2 100644 --- a/app/lib/features/main/presentation/pages/setting_page.dart +++ b/app/lib/features/main/presentation/pages/setting_page.dart @@ -32,12 +32,14 @@ class _SettingPageState extends State { 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', ), @@ -115,7 +117,7 @@ class _SettingPageState extends State { }, child: Center( child: Text( - 'From Ikatan Alumni TOKI with 🩷', + 'From Ikatan Alumni TOKI with ❤️', textAlign: TextAlign.center, style: FontTheme.greyNormal14(), ),