From 4d6a8117731a0f6c1744ab16a1728e013704e4bc Mon Sep 17 00:00:00 2001 From: Hamza Aleghwairyeen Date: Wed, 24 Apr 2024 00:14:32 +0300 Subject: [PATCH] 4/23/2 --- lib/controller/local/translations.dart | 3 +++ .../home/profile/passenger_profile_page.dart | 26 ++++++++++++++----- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/lib/controller/local/translations.dart b/lib/controller/local/translations.dart index 9806294..0e45bf8 100644 --- a/lib/controller/local/translations.dart +++ b/lib/controller/local/translations.dart @@ -581,6 +581,9 @@ class MyTranslation extends Translations { "Where you want go ": "إلى أين تريد الذهاب ", "My Card": "بطاقتي", 'Trips recorded': '‏الرحلات المسجلة', + "Select Your Country": 'اختر بلدك', + "To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": + "للتأكد من حصولك على أكثر المعلومات دقة لموقعك، يرجى اختيار بلدك أدناه. سيساعد ذلك في تخصيص تجربة التطبيق ومحتواه لبلدك.", 'Are you sure to delete recorded files': '‏هل أنت متأكد من حذف الملف الصوتي', 'Select recorded trip': "‏اختر الملف الصوتي", diff --git a/lib/views/home/profile/passenger_profile_page.dart b/lib/views/home/profile/passenger_profile_page.dart index 6f6672b..62eb0ed 100644 --- a/lib/views/home/profile/passenger_profile_page.dart +++ b/lib/views/home/profile/passenger_profile_page.dart @@ -325,15 +325,22 @@ class CountryPicker extends StatelessWidget { const SizedBox( height: 20, ), - Text("Select Your Country".tr), + Text( + "Select Your Country".tr, + style: AppStyle.headTitle2, + textAlign: TextAlign.center, + ), // const SizedBox( // height: 20, // ), Padding( padding: const EdgeInsets.all(10), child: Text( - "To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country." - .tr), + "To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country." + .tr, + style: AppStyle.title, + textAlign: TextAlign.center, + ), ), SizedBox( height: 200, @@ -401,15 +408,22 @@ class CountryPickerFromSetting extends StatelessWidget { const SizedBox( height: 20, ), - Text("Select Your Country".tr), + Text( + "Select Your Country".tr, + style: AppStyle.headTitle2, + textAlign: TextAlign.center, + ), // const SizedBox( // height: 20, // ), Padding( padding: const EdgeInsets.all(10), child: Text( - "To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country." - .tr), + "To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country." + .tr, + style: AppStyle.title, + textAlign: TextAlign.center, + ), ), SizedBox( height: 200,