mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-01 21:37:38 +00:00
18 lines
379 B
Dart
18 lines
379 B
Dart
import 'package:time/time.dart';
|
|
export 'package:time/time.dart';
|
|
|
|
class Durations {
|
|
static Duration get fastest => .15.seconds;
|
|
|
|
static Duration get fast => .25.seconds;
|
|
|
|
static Duration get medium => .35.seconds;
|
|
|
|
static Duration get slow => .7.seconds;
|
|
}
|
|
|
|
class RouteDurations {
|
|
static Duration get slow => .7.seconds;
|
|
static Duration get medium => .35.seconds;
|
|
}
|