update business tiles

This commit is contained in:
2024-11-13 13:29:09 +02:00
parent 93c0af5e98
commit 948cd5d847

View File

@@ -126,7 +126,7 @@ class _MIHHomeState extends State<MIHHome> {
}, },
tileName: "Mzansi Profile", tileName: "Mzansi Profile",
tileIcon: Padding( tileIcon: Padding(
padding: const EdgeInsets.all(10.0), padding: const EdgeInsets.all(15.0),
child: Image(image: logo), child: Image(image: logo),
), ),
p: getPrim(), p: getPrim(),
@@ -162,19 +162,18 @@ class _MIHHomeState extends State<MIHHome> {
); );
}, },
tileName: "Appointments", tileName: "Appointments",
tileIcon: tileIcon: Center(
// Center( child: FaIcon(
// child: FaIcon( FontAwesomeIcons.calendarDays,
// FontAwesomeIcons.calendarDays, color: getSec(),
// color: getSec(), size: 200,
// size: 200, ),
// ),
// ),
Icon(
Icons.calendar_month,
color: getSec(),
size: 230,
), ),
// Icon(
// Icons.calendar_month,
// color: getSec(),
// size: 230,
// ),
p: getPrim(), p: getPrim(),
s: getSec(), s: getSec(),
)); ));
@@ -209,19 +208,18 @@ class _MIHHomeState extends State<MIHHome> {
); );
}, },
tileName: "About MIH", tileName: "About MIH",
tileIcon: tileIcon: Center(
// Center( child: FaIcon(
// child: FaIcon( FontAwesomeIcons.circleInfo,
// FontAwesomeIcons.circleInfo, color: getSec(),
// color: getSec(), size: 200,
// size: 200, ),
// ),
// ),
Icon(
Icons.info_outline,
color: getSec(),
size: 230,
), ),
// Icon(
// Icons.info_outline,
// color: getSec(),
// size: 230,
// ),
p: getPrim(), p: getPrim(),
s: getSec(), s: getSec(),
)); ));
@@ -240,11 +238,18 @@ class _MIHHomeState extends State<MIHHome> {
); );
}, },
tileName: "Business Profile", tileName: "Business Profile",
tileIcon: Icon( tileIcon: Center(
Icons.business, child: FaIcon(
color: getSec(), FontAwesomeIcons.buildingUser,
size: 230, color: getSec(),
size: 165,
),
), ),
// Icon(
// Icons.business,
// color: getSec(),
// size: 230,
// ),
p: getPrim(), p: getPrim(),
s: getSec(), s: getSec(),
)); ));
@@ -276,11 +281,18 @@ class _MIHHomeState extends State<MIHHome> {
); );
}, },
tileName: "Manage Patient", tileName: "Manage Patient",
tileIcon: Icon( tileIcon: Center(
Icons.medication, child: FaIcon(
color: getSec(), FontAwesomeIcons.bookMedical,
size: 230, color: getSec(),
size: 200,
),
), ),
// Icon(
// Icons.medication,
// color: getSec(),
// size: 230,
// ),
p: getPrim(), p: getPrim(),
s: getSec(), s: getSec(),
)); ));