Formatting improvement.

This commit is contained in:
Hyperling 2025-03-08 07:41:59 -07:00
parent 8b9e0bfe54
commit e57432767d

View File

@ -141,22 +141,30 @@ class SummaryCard extends StatelessWidget {
Text( Text(
name, name,
style: TextStyle( style: TextStyle(
decoration: TextDecoration.underline, fontSize: 16), decoration: TextDecoration.underline,
fontSize: 16,
),
), ),
Row( Row(
children: [ children: [
Spacer( Spacer(
flex: 3, flex: 3,
), ),
Text(leftText), Text(
leftText,
),
Spacer( Spacer(
flex: 1, flex: 1,
), ),
Text(middleText), Text(
middleText,
),
Spacer( Spacer(
flex: 1, flex: 1,
), ),
Text(rightText), Text(
rightText,
),
Spacer( Spacer(
flex: 3, flex: 3,
), ),