summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-12 11:15:05 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-12 11:15:05 +0700
commit870d651f35c4dad12c805951fca70213816983de (patch)
treedcf50e912ca3e7823e07aee635c7e5f464b5bd66 /examples
parent5a03cac7e75ccb8ca87a97def723694be0471742 (diff)
downloadiced-870d651f35c4dad12c805951fca70213816983de.tar.gz
iced-870d651f35c4dad12c805951fca70213816983de.tar.bz2
iced-870d651f35c4dad12c805951fca70213816983de.zip
Implement `Widget::overlay` for `Responsive` widget
Diffstat (limited to 'examples')
-rw-r--r--examples/pane_grid/Cargo.toml1
-rw-r--r--examples/pane_grid/src/main.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/examples/pane_grid/Cargo.toml b/examples/pane_grid/Cargo.toml
index e489f210..03e6cd4a 100644
--- a/examples/pane_grid/Cargo.toml
+++ b/examples/pane_grid/Cargo.toml
@@ -8,3 +8,4 @@ publish = false
[dependencies]
iced = { path = "../..", features = ["debug"] }
iced_native = { path = "../../native" }
+iced_lazy = { path = "../../lazy" }
diff --git a/examples/pane_grid/src/main.rs b/examples/pane_grid/src/main.rs
index 59e5f3f9..9330ddb4 100644
--- a/examples/pane_grid/src/main.rs
+++ b/examples/pane_grid/src/main.rs
@@ -3,12 +3,12 @@ use iced::button::{self, Button};
use iced::executor;
use iced::keyboard;
use iced::pane_grid::{self, PaneGrid};
-use iced::responsive::{self, Responsive};
use iced::scrollable::{self, Scrollable};
use iced::{
Application, Color, Column, Command, Container, Element, Length, Row,
Settings, Size, Subscription, Text,
};
+use iced_lazy::responsive::{self, Responsive};
use iced_native::{event, subscription, Event};
pub fn main() -> iced::Result {