mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
6 lines
116 B
Dart
6 lines
116 B
Dart
import 'dart:ui' show Size;
|
|
|
|
extension SizeExt on Size {
|
|
bool get isPortrait => width < 600 || height >= width;
|
|
}
|