add fitted box around text

This commit is contained in:
2025-07-01 16:10:12 +02:00
parent 74c9bea5ee
commit b570c17706

View File

@@ -425,41 +425,54 @@ class _MihPersonalProfileState extends State<MihPersonalProfile> {
}, },
), ),
), ),
Text( FittedBox(
child: Text(
"@${widget.arguments.signedInUser.username}", "@${widget.arguments.signedInUser.username}",
style: TextStyle( style: TextStyle(
fontSize: 35, fontSize: 35,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: color: MzanziInnovationHub.of(context)!
MzanziInnovationHub.of(context)!.theme.secondaryColor(), .theme
.secondaryColor(),
), ),
), ),
Text( ),
FittedBox(
child: Text(
"${widget.arguments.signedInUser.fname} ${widget.arguments.signedInUser.lname}", "${widget.arguments.signedInUser.fname} ${widget.arguments.signedInUser.lname}",
style: TextStyle( style: TextStyle(
fontSize: 25, fontSize: 25,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: color: MzanziInnovationHub.of(context)!
MzanziInnovationHub.of(context)!.theme.secondaryColor(), .theme
.secondaryColor(),
), ),
), ),
Text( ),
FittedBox(
child: Text(
businessUser ? "Business" : "Personal", businessUser ? "Business" : "Personal",
style: TextStyle( style: TextStyle(
fontSize: 15, fontSize: 15,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: color: MzanziInnovationHub.of(context)!
MzanziInnovationHub.of(context)!.theme.secondaryColor(), .theme
.secondaryColor(),
),
), ),
), ),
const SizedBox(height: 10.0), const SizedBox(height: 10.0),
Text( Center(
"This would be the bio of the user telling us a bit about themself and let. This would be the bio of the user telling us a bit about themself and let. This would be the bio of the user telling us a bit about themself", child: Text(
"*DEMO TEXT* This would be the bio of the user telling us a bit about themself and let. This would be the bio of the user telling us a bit about themself and let. This would be the bio of the user telling us a bit about themself",
textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
fontSize: 15, fontSize: 15,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: color: MzanziInnovationHub.of(context)!
MzanziInnovationHub.of(context)!.theme.secondaryColor(), .theme
.secondaryColor(),
),
), ),
), ),
const SizedBox(height: 30.0), const SizedBox(height: 30.0),