Skip to content

Commit

Permalink
Fix wide layout text regression (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feichtmeier committed Aug 8, 2022
1 parent afd949c commit 08792e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/src/yaru_wide_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,14 @@ class _YaruWideLayoutState extends State<YaruWideLayout> {
selectedLabelTextStyle: TextStyle(
overflow: TextOverflow.ellipsis,
color: selectedTextColor,
fontSize: 16,
fontSize: 13,
fontWeight: FontWeight.w500,
),
unselectedLabelTextStyle: TextStyle(
color: unselectedTextColor,
overflow: TextOverflow.ellipsis,
fontSize: 16,
fontSize: 13,
fontWeight: FontWeight.w500,
),
backgroundColor: Theme.of(context).backgroundColor,
selectedIndex: _selectedIndex,
Expand Down

0 comments on commit 08792e2

Please sign in to comment.