This commit is contained in:
2025-06-03 10:20:08 +02:00
parent ec27667509
commit 58f371337a
3 changed files with 36 additions and 4 deletions

View File

@@ -205,7 +205,23 @@ class _MihBusinessHomeState extends State<MihBusinessHome>
return MihSingleChildScroll(
child: Column(
children: [
const SizedBox(height: 10),
// Icon(
// MihIcons.mihLogo,
// size: width / 2,
// color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
// ),
// const SizedBox(height: 10),
// Text(
// // "Welcome, ${widget.signedInUser.fname}!",
// "Mzansi Innovation Hub",
// textAlign: TextAlign.center,
// style: TextStyle(
// fontSize: 30,
// fontWeight: FontWeight.bold,
// color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
// ),
// ),
// const SizedBox(height: 20),
Padding(
padding: EdgeInsets.symmetric(horizontal: width / 20),
child: MihSearchBar(

View File

@@ -248,7 +248,23 @@ class _MihPersonalHomeState extends State<MihPersonalHome>
return MihSingleChildScroll(
child: Column(
children: [
const SizedBox(height: 10),
// Icon(
// MihIcons.mihLogo,
// size: 200,
// color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
// ),
// const SizedBox(height: 10),
// Text(
// // "Welcome, ${widget.signedInUser.fname}!",
// "Mzansi Innovation Hub",
// textAlign: TextAlign.center,
// style: TextStyle(
// fontSize: 30,
// fontWeight: FontWeight.bold,
// color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
// ),
// ),
// const SizedBox(height: 20),
Padding(
padding: EdgeInsets.symmetric(horizontal: width / 20),
child: MihSearchBar(
@@ -274,7 +290,7 @@ class _MihPersonalHomeState extends State<MihPersonalHome>
searchFocusNode: _searchFocusNode,
),
),
const SizedBox(height: 10),
const SizedBox(height: 20),
ValueListenableBuilder(
valueListenable: searchPackageName,
builder: (context, value, child) {

View File

@@ -37,7 +37,7 @@ class _MzansiProfileTileState extends State<MzansiProfileTile> {
},
appName: "Mzansi Profile",
appIcon: Icon(
MihIcons.personalProfile,
MihIcons.mihLogo,
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
// size: widget.packageSize,
),