widget: Add custom radio widget

This commit is contained in:
Victoria Brekenfeld 2024-08-28 15:22:26 +02:00 committed by Michael Murphy
parent fdc04ddf12
commit 60817451bb
2 changed files with 404 additions and 3 deletions

View file

@ -77,9 +77,6 @@ pub use iced::widget::{pane_grid, PaneGrid};
#[doc(inline)]
pub use iced::widget::{progress_bar, ProgressBar};
#[doc(inline)]
pub use iced::widget::{radio, Radio};
#[doc(inline)]
pub use iced::widget::{responsive, Responsive};
@ -261,6 +258,10 @@ pub mod popover;
#[doc(inline)]
pub use popover::{popover, Popover};
pub mod radio;
#[doc(inline)]
pub use radio::{radio, Radio};
pub mod rectangle_tracker;
#[doc(inline)]
pub use rectangle_tracker::{rectangle_tracker, RectangleTracker};