add about tile to personal apps

This commit is contained in:
2024-09-16 13:04:45 +02:00
parent c336e3b25c
commit f47260f9f1

View File

@@ -129,6 +129,23 @@ class _HomeTileGridState extends State<HomeTileGrid> {
p: getPrim(),
s: getSec(),
));
tileList.add(HomeTile(
onTap: () {
Navigator.of(context).pushNamed(
'/about',
arguments: widget.signedInUser,
);
},
tileName: "About MIH",
tileIcon: Icon(
Icons.info_outline,
color: getSec(),
size: 200,
),
p: getPrim(),
s: getSec(),
));
}
void setAppsBusiness(List<HomeTile> tileList) {
@@ -524,6 +541,17 @@ class _HomeTileGridState extends State<HomeTileGrid> {
),
],
),
// MIHAction(
// icon: Icons.apps,
// iconSize: 50,
// onTap: () {
// setState(() {
// appSearch = "";
// searchController.clear();
// });
// Scaffold.of(context).openDrawer();
// },
// ),
Positioned(
top: 10,
left: 5,