mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
18 lines
583 B
Dart
18 lines
583 B
Dart
/// Version string shown in settings page
|
|
const versionStr = "28.1-c72a66";
|
|
const version = 281;
|
|
|
|
/// Show a snack bar for a short amount of time
|
|
const snackBarDurationShort = Duration(seconds: 4);
|
|
|
|
/// Show a snack bar for a normal amount of time
|
|
const snackBarDurationNormal = Duration(seconds: 7);
|
|
|
|
/// Duration for short animation
|
|
const animationDurationShort = Duration(milliseconds: 100);
|
|
|
|
/// Duration for normal animation
|
|
const animationDurationNormal = Duration(milliseconds: 250);
|
|
|
|
/// Duration for long animation
|
|
const animationDurationLong = Duration(milliseconds: 500);
|