Skip to content

Commit

Permalink
Merge pull request #1372 from ardriveapp/PE-4647
Browse files Browse the repository at this point in the history
PE-4647: Make the privacy field for Create Drive not change color on Focus
  • Loading branch information
matibat authored Sep 21, 2023
2 parents 3e279e9 + 9f9f9dc commit 093f653
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion lib/components/drive_create_form.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,21 @@ class _DriveCreateFormState extends State<DriveCreateForm> {
ReactiveDropdownField(
formControlName: 'privacy',
decoration: InputDecoration(
labelText: appLocalizationsOf(context).privacy,
label: Text(
appLocalizationsOf(context).privacy,
style: ArDriveTheme.of(context)
.themeData
.textFieldTheme
.inputTextStyle
.copyWith(
color: ArDriveTheme.of(context)
.themeData
.colors
.themeFgDisabled,
fontSize: 16,
),
),
focusedBorder: InputBorder.none,
),
showErrors: (control) =>
control.dirty && control.invalid,
Expand Down

0 comments on commit 093f653

Please sign in to comment.