1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 09:48:53 +01:00
nc-photos/lib/k.dart
2021-08-17 22:20:33 +08:00

18 lines
613 B
Dart

/// Version string shown in settings page
const versionStr = "26.0-047f92";
const version = 260;
/// 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);