Implement State::with_content in pane_grid

This commit is contained in:
Héctor Ramón Jiménez 2020-05-12 10:09:30 +02:00
parent 32b9c1fdbd
commit 2ab7341fa5
4 changed files with 62 additions and 17 deletions

View file

@ -9,6 +9,7 @@
//! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.1/examples/pane_grid
//! [`PaneGrid`]: struct.PaneGrid.html
mod axis;
mod content;
mod direction;
mod node;
mod pane;
@ -16,6 +17,7 @@ mod split;
mod state;
pub use axis::Axis;
pub use content::Content;
pub use direction::Direction;
pub use node::Node;
pub use pane::Pane;