mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-01 13:30:21 +00:00

* feat: upgrade to flutter 3.16 * chore: adjust flutter 3.16 new api * chore: code format * fix: ci lint * chore: code format * chore: dart format
19 lines
385 B
Dart
19 lines
385 B
Dart
import 'package:time/time.dart';
|
|
|
|
export 'package:time/time.dart';
|
|
|
|
class FlowyDurations {
|
|
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;
|
|
}
|