Implement Widget::overlay for Responsive widget
This commit is contained in:
parent
5a03cac7e7
commit
870d651f35
13 changed files with 440 additions and 248 deletions
|
|
@ -8,3 +8,4 @@ publish = false
|
|||
[dependencies]
|
||||
iced = { path = "../..", features = ["debug"] }
|
||||
iced_native = { path = "../../native" }
|
||||
iced_lazy = { path = "../../lazy" }
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue