blob: ec44e30ac76d2d18ff2ed38d86d8a33ee2359449 (
plain) (
blame)
1
2
3
4
5
6
|
//! Zoom and pan on an image.
pub use iced_native::image_viewer::State;
/// A widget that can display an image with the ability to zoom in/out and pan.
pub type ImageViewer<'a> = iced_native::ImageViewer<'a>;
|