fix package names

This commit is contained in:
2025-04-02 13:12:14 +02:00
parent a592bf7260
commit db65149b1b

View File

@@ -98,26 +98,20 @@ class _MihAppTileState extends State<MihAppTile> {
const SizedBox(height: 10), const SizedBox(height: 10),
Flexible( Flexible(
flex: 1, flex: 1,
child: Row( child: FittedBox(
mainAxisAlignment: MainAxisAlignment.center,
children: [
FittedBox(
child: Text( child: Text(
widget.appName, widget.appName,
textAlign: TextAlign.center, textAlign: TextAlign.center,
// softWrap: true, // softWrap: true,
// overflow: TextOverflow.visible, // overflow: TextOverflow.visible,
style: TextStyle( style: TextStyle(
color: MzanziInnovationHub.of(context)! color:
.theme MzanziInnovationHub.of(context)!.theme.secondaryColor(),
.secondaryColor(),
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
), ),
), ),
), ),
],
),
) )
], ],
), ),