twonly-app-dependencies/photo_view/lib/src/photo_view_scale_state.dart
2025-12-07 16:10:41 +01:00

14 lines
381 B
Dart

/// A way to represent the step of the "doubletap gesture cycle" in which PhotoView is.
enum PhotoViewScaleState {
initial,
covering,
originalSize,
zoomedIn,
zoomedOut,
}
extension PhotoViewScaleStateIZoomingExtension on PhotoViewScaleState {
bool get isScaleStateZooming =>
this == PhotoViewScaleState.zoomedIn ||
this == PhotoViewScaleState.zoomedOut;
}