fix package names

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

View File

@@ -98,25 +98,19 @@ 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, child: Text(
children: [ widget.appName,
FittedBox( textAlign: TextAlign.center,
child: Text( // softWrap: true,
widget.appName, // overflow: TextOverflow.visible,
textAlign: TextAlign.center, style: TextStyle(
// softWrap: true, color:
// overflow: TextOverflow.visible, MzanziInnovationHub.of(context)!.theme.secondaryColor(),
style: TextStyle( fontSize: 20.0,
color: MzanziInnovationHub.of(context)! fontWeight: FontWeight.bold,
.theme
.secondaryColor(),
fontSize: 20.0,
fontWeight: FontWeight.bold,
),
),
), ),
], ),
), ),
) )
], ],