made full new grade color picker

This commit is contained in:
Kima
2024-05-12 22:05:21 +02:00
parent e0bf8ac5e5
commit 75ba5405bb
5 changed files with 406 additions and 3 deletions

View File

@@ -44,6 +44,7 @@ enum CustomColorMode {
text,
icon,
enterId,
grade,
}
class _PremiumCustomAccentColorSettingState
@@ -158,6 +159,9 @@ class _PremiumCustomAccentColorSettingState
case CustomColorMode.enterId:
// do nothing here lol
break;
case CustomColorMode.grade:
// do nothing here as well
break;
}
}
@@ -218,6 +222,9 @@ class _PremiumCustomAccentColorSettingState
settings.update(customAccentColor: accent, store: store);
settings.update(customIconColor: icon, store: store);
break;
case CustomColorMode.grade:
// do nothing
break;
}
}