mirror of
https://github.com/gskinnerTeam/flutter-wonderous-app.git
synced 2025-08-14 18:12:33 +08:00
6 lines
267 B
Dart
6 lines
267 B
Dart
import 'package:wonders/common_libs.dart';
|
|
|
|
extension DurationExtensions on int {
|
|
Duration get delayMs => $styles.disableAnimations ? 0.ms : Duration(milliseconds: this);
|
|
Duration get animateMs => $styles.disableAnimations ? 1.ms : Duration(milliseconds: this);
|
|
} |