2021-04-10 06:28:12 +02:00
|
|
|
/// Version string shown in settings page
|
2021-09-05 15:26:02 +02:00
|
|
|
const versionStr = "28.1-c72a66";
|
|
|
|
const version = 281;
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
/// Show a snack bar for a short amount of time
|
2021-09-15 08:58:06 +02:00
|
|
|
const snackBarDurationShort = Duration(seconds: 4);
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
/// Show a snack bar for a normal amount of time
|
2021-09-15 08:58:06 +02:00
|
|
|
const snackBarDurationNormal = Duration(seconds: 7);
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
/// Duration for short animation
|
2021-09-15 08:58:06 +02:00
|
|
|
const animationDurationShort = Duration(milliseconds: 100);
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
/// Duration for normal animation
|
2021-09-15 08:58:06 +02:00
|
|
|
const animationDurationNormal = Duration(milliseconds: 250);
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
/// Duration for long animation
|
2021-09-15 08:58:06 +02:00
|
|
|
const animationDurationLong = Duration(milliseconds: 500);
|