2021-04-10 06:28:12 +02:00
|
|
|
/// Version string shown in settings page
|
2021-04-27 13:48:42 +02:00
|
|
|
const versionStr = "9.0-dcf35f";
|
|
|
|
const version = 9;
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
/// Show a snack bar for a short amount of time
|
|
|
|
const snackBarDurationShort = const Duration(seconds: 4);
|
|
|
|
|
|
|
|
/// Show a snack bar for a normal amount of time
|
|
|
|
const snackBarDurationNormal = const Duration(seconds: 7);
|
|
|
|
|
|
|
|
/// Duration for short animation
|
|
|
|
const animationDurationShort = const Duration(milliseconds: 100);
|
|
|
|
|
|
|
|
/// Duration for normal animation
|
|
|
|
const animationDurationNormal = const Duration(milliseconds: 250);
|
|
|
|
|
|
|
|
/// Duration for long animation
|
|
|
|
const animationDurationLong = const Duration(milliseconds: 500);
|