remove home border and use new icons

This commit is contained in:
2025-05-14 14:33:44 +02:00
parent 6157397819
commit eccb0ec1f6
6 changed files with 25 additions and 189 deletions

View File

@@ -190,7 +190,7 @@ class _MihBusinessHomeState extends State<MihBusinessHome>
final double width = size.width;
final double height = size.height;
return MihAppToolBody(
borderOn: true,
borderOn: false,
bodyItem: getBody(width, height),
);
}

View File

@@ -157,12 +157,9 @@ class _MihPersonalHomeState extends State<MihPersonalHome>
);
},
appName: "Test",
appIcon: Container(
padding: const EdgeInsets.all(0.5),
child: Icon(
Icons.warning_amber_rounded,
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
),
appIcon: Icon(
Icons.warning_amber_rounded,
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
),
iconSize: packageSize,
primaryColor: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
@@ -238,7 +235,7 @@ class _MihPersonalHomeState extends State<MihPersonalHome>
final double height = size.height;
return MihAppToolBody(
borderOn: true,
borderOn: false,
bodyItem: getBody(width, height),
);
}