Add ImagePane widget

This commit is contained in:
Cory Forsstrom 2020-04-23 15:34:55 -07:00
parent 5324eb1024
commit 0d8cefbf2d
No known key found for this signature in database
GPG key ID: 64D6B5851FFCAC9E
7 changed files with 470 additions and 2 deletions

View file

@ -0,0 +1,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>;