BASE: Enhance Design.
This commit is contained in:
@@ -298,7 +298,7 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
);
|
||||
},
|
||||
child: TextFieldWidget(
|
||||
hintText: 'Search the store, item and more...'.tr,
|
||||
hintText: ConstTexts.searchStoreItem.tr,
|
||||
controller: null,
|
||||
enable: false,
|
||||
backgroundColor: AppThemeData.grey50,
|
||||
@@ -335,7 +335,7 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
"Category".tr,
|
||||
ConstTexts.category.tr,
|
||||
textAlign: TextAlign.start,
|
||||
style: AppThemeData.semiBoldTextStyle(
|
||||
color:
|
||||
@@ -351,7 +351,7 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
Get.to(const ViewAllCategoryScreen());
|
||||
},
|
||||
child: Text(
|
||||
"View all".tr,
|
||||
ConstTexts.viewAll.tr,
|
||||
textAlign: TextAlign.start,
|
||||
style: AppThemeData.semiBoldTextStyle(
|
||||
decoration: TextDecoration.underline,
|
||||
@@ -466,7 +466,9 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
"Highlights for you".tr,
|
||||
ConstTexts
|
||||
.highlightsForU
|
||||
.tr,
|
||||
textAlign: TextAlign.start,
|
||||
style: TextStyle(
|
||||
fontFamily:
|
||||
@@ -547,7 +549,7 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
child: Text(
|
||||
"New Arrivals".tr,
|
||||
ConstTexts.newArrival.tr,
|
||||
textAlign: TextAlign.start,
|
||||
style: AppThemeData.semiBoldTextStyle(
|
||||
color:
|
||||
@@ -594,14 +596,14 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
isDark
|
||||
? AppThemeData.greyDark200
|
||||
: AppThemeData.grey200,
|
||||
title: 'View All Arrivals'.tr,
|
||||
title: ConstTexts.viewAllArrivals.tr,
|
||||
onPress: () {
|
||||
Get.to(
|
||||
RestaurantListScreen(),
|
||||
arguments: {
|
||||
"vendorList":
|
||||
controller.newArrivalRestaurantList,
|
||||
"title": "New Arrivals".tr,
|
||||
"title": ConstTexts.newArrival.tr,
|
||||
},
|
||||
);
|
||||
},
|
||||
@@ -614,7 +616,7 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
"Top Brands".tr,
|
||||
ConstTexts.topBrands.tr,
|
||||
textAlign: TextAlign.start,
|
||||
style: AppThemeData.semiBoldTextStyle(
|
||||
color:
|
||||
@@ -777,7 +779,7 @@ class HomeECommerceScreen extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
Text(
|
||||
"Style up with the latest fits, now at unbeatable prices."
|
||||
ConstTexts.styleUp.tr
|
||||
.tr,
|
||||
textAlign: TextAlign.start,
|
||||
style:
|
||||
|
||||
Reference in New Issue
Block a user