fixed height glitch on grades page

This commit is contained in:
Kima
2023-10-15 17:20:08 +02:00
parent 21a5771211
commit d27c059b23
2 changed files with 4 additions and 4 deletions

View File

@@ -155,7 +155,7 @@ class _GradesPageState extends State<GradesPage> {
title: AutoSizeText(
"subjectavg".i18n,
textAlign: TextAlign.center,
maxLines: 2,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
value: subjectAvg,
@@ -168,7 +168,7 @@ class _GradesPageState extends State<GradesPage> {
title: AutoSizeText(
"classavg".i18n,
textAlign: TextAlign.center,
maxLines: 2,
maxLines: 1,
wrapWords: false,
overflow: TextOverflow.ellipsis,
),