Files
game-tracker/lib/core/constants.dart
Felix Kirchner bb79eecdfd
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m4s
Pull Request Pipeline / lint (pull_request) Successful in 2m9s
Updated and added comments
2026-01-13 22:24:31 +01:00

8 lines
240 B
Dart

/// Application-wide constants
class Constants {
Constants._(); // Private constructor to prevent instantiation
/// Minimum duration of all app skeletons
static Duration minimumSkeletonDuration = const Duration(milliseconds: 250);
}