fix ios icon & fix ios navigation bug

This commit is contained in:
2026-04-28 15:17:16 +02:00
parent 17f7f3287d
commit 2be2f69f30
101 changed files with 153 additions and 143 deletions

View File

@@ -19,7 +19,7 @@ class _MzansiBusinessProfileTileState extends State<MzansiBusinessProfileTile> {
Widget build(BuildContext context) {
return MihPackageTile(
onTap: () {
context.goNamed(
context.pushNamed(
"businessProfileManage",
);
// Navigator.of(context).pushNamed(

View File

@@ -24,7 +24,7 @@ class _MzansiSetupBusinessProfileTileState
context.read<MzansiProfileProvider>();
return MihPackageTile(
onTap: () {
context.goNamed(
context.pushNamed(
'businessProfileSetup',
extra: profileProvider.user,
);

View File

@@ -20,7 +20,7 @@ class _MzansiProfileTileState extends State<MzansiProfileTile> {
// ImageProvider logo = MzansiInnovationHub.of(context)!.theme.logoImage();
return MihPackageTile(
onTap: () {
context.goNamed(
context.pushNamed(
'mzansiProfileManage',
);
},