diff --git a/lib/components/drive_create_form.dart b/lib/components/drive_create_form.dart index 5800b22c93..8b493363af 100644 --- a/lib/components/drive_create_form.dart +++ b/lib/components/drive_create_form.dart @@ -111,7 +111,21 @@ class _DriveCreateFormState extends State { 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,