Skip to content

Commit

Permalink
Make other thing bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Dec 18, 2024
1 parent db1f162 commit a4bac2a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/components/config/ConfigItem.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ class ConfigItem extends StatelessWidget {
? label
: DefaultTextStyle(
style: CupertinoTheme.of(context).textTheme.textStyle, child: Container(child: label))),
Expanded(child: content),
Expanded(
child: Platform.isAndroid
? content
: DefaultTextStyle(
style: CupertinoTheme.of(context).textTheme.textStyle, child: Container(child: content))),
],
));
}
Expand Down

0 comments on commit a4bac2a

Please sign in to comment.