Updated constant names

This commit is contained in:
2025-07-31 23:02:52 +02:00
parent a4befd5bb8
commit e201a26b6d
4 changed files with 7 additions and 7 deletions

View File

@@ -21,13 +21,13 @@ class Constants {
remindLaunches: 40);
/// Delay in milliseconds before a pop-up appears.
static const int popUpDelay = 300;
static const int kPopUpDelay = 300;
/// Delay in milliseconds before the round view appears after the previous one is closed.
static const int roundViewDelay = 600;
static const int kRoundViewDelay = 600;
/// Duration in milliseconds for the fade-in animation of texts.
static const int fadeInDuration = 300;
static const int kFadeInDuration = 300;
/// Duration in milliseconds for the keyboard to fully disappear.
static const int kKeyboardDelay = 300;