Added delays in constants.dart

This commit is contained in:
2025-07-20 22:56:41 +02:00
parent 382fab57dd
commit 2a7b2a9dc0
4 changed files with 15 additions and 3 deletions

View File

@@ -19,4 +19,13 @@ class Constants {
remindDays: 45,
minLaunches: 15,
remindLaunches: 40);
/// Delay in milliseconds before a pop-up appears.
static const int popUpDelay = 300;
/// Delay in milliseconds before the round view appears after the previous one is closed.
static const int roundViewDelay = 600;
/// Duration in milliseconds for the fade-in animation of texts.
static const int fadeInDuration = 300;
}