Skip to content

Commit

Permalink
fix: remove fitt in stats
Browse files Browse the repository at this point in the history
  • Loading branch information
brunogabriel committed Oct 31, 2024
1 parent e8d60e2 commit 5b02310
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pokedex/lib/design/components/stat_line.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,9 @@ class StatLine extends StatelessWidget {
children: [
Expanded(
flex: 2,
child: FittedBox(
child: Text(
title,
style:
textTheme.labelMedium?.copyWith(fontWeight: FontWeight.bold),
),
child: Text(
title,
style: textTheme.labelMedium?.copyWith(fontWeight: FontWeight.bold),
),
),
Expanded(
Expand Down

0 comments on commit 5b02310

Please sign in to comment.