Files
sm-emby-share/lib/shared/constants/breakpoints.dart
T

11 lines
173 B
Dart
Raw Normal View History

2026-07-14 11:11:36 +08:00
abstract final class Breakpoints {
static const double compact = 600;
static const double detail = 720;
static bool isCompact(double width) => width < compact;
}