maycoon_widgets/
lib.rs

1#![warn(missing_docs)]
2
3//! Widget library for Maycoon => See `maycoon` crate.
4//!
5//! Contains a collection of beautiful maycoon widgets.
6
7/// Contains the [text::Text] widget.
8pub mod text;
9
10/// Contains the [button::Button] widget.
11pub mod button;
12
13/// Contains the [container::Container] widget.
14pub mod container;
15
16/// Contains the [image::Image] widget.
17pub mod image;
18
19/// Contains the [checkbox::Checkbox] widget.
20pub mod checkbox;
21
22/// Contains the [slider::Slider] widget.
23pub mod slider;
24
25/// Contains the [switch::Switch] widget.
26pub mod switch;
27
28/// Contains the [fetcher::WidgetFetcher] widget.
29pub mod fetcher;
30
31/// Contains the [canvas::Canvas] widget.
32#[cfg(feature = "canvas")]
33pub mod canvas;
34
35/// Contains the [gesture_detector::GestureDetector] widget.
36pub mod gesture_detector;
37
38/// Contains the [icon::Icon] widget.
39#[cfg(feature = "svg")]
40pub mod icon;
41
42/// Contains the [animator::Animator] widget and associated structures.
43pub mod animator;