fix: Set text colour on dropdown menu for Custom Value

This fix #1584 and a continuation of acb1e2434b

Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
This commit is contained in:
Pun Butrach 2024-03-28 05:15:02 +00:00 committed by GitHub
parent 2d19f36901
commit 966796dfec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -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,
),
),
),