Skip to content

Commit

Permalink
fix small size in tomuss
Browse files Browse the repository at this point in the history
Former-commit-id: 7753dfd
  • Loading branch information
hatch01 committed Oct 9, 2023
1 parent f4cfcee commit e6b8af1
Showing 1 changed file with 12 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,28 +135,20 @@ class _GradeWidgetState extends State<GradeWidget> {
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Flexible(
flex: 1,
child: Text(
widget.text1,
style: TextStyle(
fontWeight: FontWeight.bold,
color:
Theme.of(context).textTheme.bodyLarge!.color,
fontSize: 16.sp,
),
Text(
widget.text1,
style: TextStyle(
fontWeight: FontWeight.bold,
color: Theme.of(context).textTheme.bodyLarge!.color,
fontSize: 15.sp,
),
),
Flexible(
flex: 1,
child: Text(
widget.text2,
textAlign: TextAlign.start,
style: TextStyle(
color:
Theme.of(context).textTheme.bodyLarge!.color,
fontSize: 15.sp,
),
Text(
widget.text2,
textAlign: TextAlign.start,
style: TextStyle(
color: Theme.of(context).textTheme.bodyLarge!.color,
fontSize: 12.5.sp,
),
),
],
Expand Down

0 comments on commit e6b8af1

Please sign in to comment.