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