fix: disable text scaling in learning progress indicators (#5313)
This commit is contained in:
parent
ea0c1afb10
commit
2f5d67e202
2 changed files with 3 additions and 0 deletions
|
|
@ -147,6 +147,7 @@ class LearningProgressIndicators extends StatelessWidget {
|
|||
.colorScheme
|
||||
.primary,
|
||||
),
|
||||
textScaler: TextScaler.noScaling,
|
||||
),
|
||||
if (userL1 != null && userL2 != null)
|
||||
const Icon(Icons.chevron_right_outlined),
|
||||
|
|
@ -162,6 +163,7 @@ class LearningProgressIndicators extends StatelessWidget {
|
|||
.colorScheme
|
||||
.primary,
|
||||
),
|
||||
textScaler: TextScaler.noScaling,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@ class AnimatedFloatingNumberState extends State<AnimatedFloatingNumber>
|
|||
Text(
|
||||
widget.number.toString(),
|
||||
style: indicatorStyle,
|
||||
textScaler: TextScaler.noScaling,
|
||||
),
|
||||
],
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue