From 966796dfec0691bac87960f508dd0351a8fd1d77 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 05:15:02 +0000 Subject: [PATCH] fix: Set text colour on dropdown menu for Custom Value This fix #1584 and a continuation of acb1e2434b28efca852297e0a0a8ffce155e67e4 Signed-off-by: Pun Butrach --- lib/ui/widgets/patchesSelectorView/patch_options_fields.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart b/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart index 4dabc405..9c32d5e2 100644 --- a/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart +++ b/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart @@ -445,8 +445,11 @@ class _TextFieldForPatchOptionState extends State { value: '', child: Text( t.patchOptionsView.customValue, - style: const TextStyle( + style: TextStyle( fontSize: 16, + color: Theme.of(context) + .colorScheme + .onSecondaryContainer, ), ), ),