auto frequency dark mode text fix

This commit is contained in:
ryleedavis 2022-11-15 12:29:08 -07:00
parent 4a90856498
commit 8adec7ba5c
2 changed files with 12 additions and 2 deletions

View file

@ -424,6 +424,7 @@ class _EditAutoBackupViewState extends ConsumerState<EditAutoBackupView> {
passwordFocusNode,
context,
).copyWith(
labelStyle: isDesktop ? STextStyles.fieldLabel(context) : null,
suffixIcon: UnconstrainedBox(
child: Row(
children: [
@ -555,6 +556,7 @@ class _EditAutoBackupViewState extends ConsumerState<EditAutoBackupView> {
passwordRepeatFocusNode,
context,
).copyWith(
labelStyle: isDesktop ? STextStyles.fieldLabel(context) : null,
suffixIcon: UnconstrainedBox(
child: Row(
children: [
@ -631,7 +633,11 @@ class _EditAutoBackupViewState extends ConsumerState<EditAutoBackupView> {
return DropdownMenuItem(
value: e,
child: Text(message),
child: Text(
message,
style:
STextStyles.desktopTextExtraExtraSmall(context),
),
);
},
),

View file

@ -492,7 +492,11 @@ class _CreateAutoBackup extends ConsumerState<CreateAutoBackup> {
return DropdownMenuItem(
value: e,
child: Text(message),
child: Text(
message,
style: STextStyles.desktopTextExtraExtraSmall(
context),
),
);
},
),