Draft Responsive widget

This commit is contained in:
Héctor Ramón Jiménez 2022-01-11 10:47:56 +07:00
parent 1a31aefab4
commit 90c20ac46b
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
11 changed files with 248 additions and 23 deletions

View file

@ -17,8 +17,8 @@
mod platform {
pub use crate::renderer::widget::{
button, checkbox, container, pane_grid, pick_list, progress_bar, radio,
rule, scrollable, slider, text_input, toggler, tooltip, Column, Row,
Space, Text,
responsive, rule, scrollable, slider, text_input, toggler, tooltip,
Column, Row, Space, Text,
};
#[cfg(any(feature = "canvas", feature = "glow_canvas"))]
@ -54,8 +54,9 @@ mod platform {
pub use {
button::Button, checkbox::Checkbox, container::Container, image::Image,
pane_grid::PaneGrid, pick_list::PickList, progress_bar::ProgressBar,
radio::Radio, rule::Rule, scrollable::Scrollable, slider::Slider,
svg::Svg, text_input::TextInput, toggler::Toggler, tooltip::Tooltip,
radio::Radio, responsive::Responsive, rule::Rule,
scrollable::Scrollable, slider::Slider, svg::Svg,
text_input::TextInput, toggler::Toggler, tooltip::Tooltip,
};
#[cfg(any(feature = "canvas", feature = "glow_canvas"))]