Skip to content

Commit

Permalink
fix: Set text colour on dropdown menu for Custom Value
Browse files Browse the repository at this point in the history
This fix #1584 and a continuation of acb1e24

Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
  • Loading branch information
validcube committed Mar 28, 2024
1 parent 2d19f36 commit 966796d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/ui/widgets/patchesSelectorView/patch_options_fields.dart
Expand Up @@ -445,8 +445,11 @@ class _TextFieldForPatchOptionState extends State<TextFieldForPatchOption> {
value: '',
child: Text(
t.patchOptionsView.customValue,
style: const TextStyle(
style: TextStyle(
fontSize: 16,
color: Theme.of(context)
.colorScheme
.onSecondaryContainer,
),
),
),
Expand Down

0 comments on commit 966796d

Please sign in to comment.