This commit is contained in:
Hamza-Ayed
2024-05-29 01:36:53 +03:00
parent 79c4dd32da
commit 93adf15874
4 changed files with 51 additions and 31 deletions

View File

@@ -33,7 +33,10 @@ class HomePage extends StatelessWidget {
'Language'.tr,
style: AppStyle.headTitle2,
),
subtitle: Text('To change Language the App'.tr),
subtitle: Text(
'To change Language the App'.tr,
style: AppStyle.title,
),
trailing: const Icon(
Icons.arrow_forward_ios,
size: 30,
@@ -50,8 +53,10 @@ class HomePage extends StatelessWidget {
'Change Country'.tr,
style: AppStyle.headTitle2,
),
subtitle:
Text('You can change the Country to get all features'.tr),
subtitle: Text(
'You can change the Country to get all features'.tr,
style: AppStyle.title,
),
onTap: () => Get.to(MyScafolld(
title: 'Change Country'.tr,
body: [CountryPickerFromSetting()],
@@ -63,8 +68,10 @@ class HomePage extends StatelessWidget {
'Frequently Questions'.tr,
style: AppStyle.headTitle2,
),
subtitle:
Text('You can change the Country to get all features'.tr),
subtitle: Text(
'You can change the Country to get all features'.tr,
style: AppStyle.title,
),
onTap: () => Get.to(() => const FrequentlyQuestionsPage()),
),
ListTile(
@@ -73,7 +80,10 @@ class HomePage extends StatelessWidget {
'Trips recorded'.tr,
style: AppStyle.headTitle2,
),
subtitle: Text('Here recorded trips audio'.tr),
subtitle: Text(
'Here recorded trips audio'.tr,
style: AppStyle.title,
),
onTap: () async {
Get.defaultDialog(
title: 'Select recorded trip'.tr,
@@ -197,8 +207,10 @@ class HomePage extends StatelessWidget {
'About Us'.tr,
style: AppStyle.headTitle2,
),
subtitle:
Text('You can change the Country to get all features'.tr),
subtitle: Text(
'You can change the Country to get all features'.tr,
style: AppStyle.title,
),
onTap: () => Get.to(() => const AboutPage()),
),
],