fix icons and remove .

This commit is contained in:
2025-08-07 11:14:07 +02:00
parent dc4b82091f
commit 4755e5b6bd
3 changed files with 9 additions and 9 deletions

View File

@@ -211,7 +211,7 @@ class _MihSearchMzansiState extends State<MihSearchMzansi> {
Expanded( Expanded(
child: MihDropdownField( child: MihDropdownField(
controller: businessTypeController, controller: businessTypeController,
hintText: "Business Type Filter", hintText: "Business Type",
dropdownOptions: options, dropdownOptions: options,
requiredText: true, requiredText: true,
editable: true, editable: true,
@@ -466,7 +466,7 @@ class _MihSearchMzansiState extends State<MihSearchMzansi> {
children: [ children: [
const SizedBox(height: 50), const SizedBox(height: 50),
Icon( Icon(
MihIcons.personalProfile, MihIcons.businessProfile,
size: 165, size: 165,
color: color:
MzansiInnovationHub.of(context)!.theme.secondaryColor(), MzansiInnovationHub.of(context)!.theme.secondaryColor(),

View File

@@ -31,7 +31,7 @@ class _MzansiSetupBusinessProfileTileState
}, },
appName: "Set Up Business", appName: "Set Up Business",
appIcon: Icon( appIcon: Icon(
MihIcons.profileSetup, MihIcons.businessSetup,
color: MzansiInnovationHub.of(context)!.theme.secondaryColor(), color: MzansiInnovationHub.of(context)!.theme.secondaryColor(),
), ),
iconSize: widget.packageSize, iconSize: widget.packageSize,

View File

@@ -535,13 +535,13 @@ class _BuildLoyaltyCardListState extends State<BuildLoyaltyCardList> {
children: [ children: [
const SizedBox(height: 50), const SizedBox(height: 50),
Icon( Icon(
MihIcons.iDontKnow, MihIcons.mzansiWallet,
size: 165, size: 165,
color: MzansiInnovationHub.of(context)!.theme.secondaryColor(), color: MzansiInnovationHub.of(context)!.theme.secondaryColor(),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
Text( Text(
"No Cards added to your Mzansi Wallet.", "No Cards added to your Mzansi Wallet",
textAlign: TextAlign.center, textAlign: TextAlign.center,
overflow: TextOverflow.visible, overflow: TextOverflow.visible,
style: TextStyle( style: TextStyle(
@@ -575,7 +575,7 @@ class _BuildLoyaltyCardListState extends State<BuildLoyaltyCardList> {
.secondaryColor(), .secondaryColor(),
), ),
), ),
TextSpan(text: " to add your first loyalty card."), TextSpan(text: " to add your first loyalty card"),
], ],
), ),
), ),
@@ -592,13 +592,13 @@ class _BuildLoyaltyCardListState extends State<BuildLoyaltyCardList> {
children: [ children: [
const SizedBox(height: 50), const SizedBox(height: 50),
Icon( Icon(
MihIcons.iDontKnow, MihIcons.mzansiWallet,
size: 165, size: 165,
color: MzansiInnovationHub.of(context)!.theme.secondaryColor(), color: MzansiInnovationHub.of(context)!.theme.secondaryColor(),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
Text( Text(
"No Favourite Cards in your Mzansi Wallet.", "No Favourite Cards in your Mzansi Wallet",
textAlign: TextAlign.center, textAlign: TextAlign.center,
overflow: TextOverflow.visible, overflow: TextOverflow.visible,
style: TextStyle( style: TextStyle(
@@ -634,7 +634,7 @@ class _BuildLoyaltyCardListState extends State<BuildLoyaltyCardList> {
), ),
TextSpan( TextSpan(
text: text:
" when viewing loyalty card to add it to your favorites."), " when viewing loyalty card to add it to your favorites"),
], ],
), ),
), ),