1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-FileCopyrightText: Copyright (c) 2026 Mike Li/Mikewolfli/Wei Li(mikewolfli@163.com)
// SPDX-License-Identifier: MIT
//! Display widgets: progress bars, sliders, scroll bars, etc.
pub mod arc;
#[cfg(widgets_unstripped)]
pub mod badge;
#[cfg(widgets_unstripped)]
pub mod color_history;
#[cfg(widgets_unstripped)]
pub mod color_well;
#[cfg(widgets_unstripped)]
pub mod divider;
#[cfg(widgets_unstripped)]
pub mod empty_state;
#[cfg(widgets_unstripped)]
pub mod floating_label;
#[cfg(widgets_unstripped)]
pub mod font_preview;
#[cfg(widgets_unstripped)]
pub mod icon;
#[cfg(feature = "image")]
pub mod image_view;
#[cfg(widgets_unstripped)]
pub mod lcd_number;
pub mod line;
pub mod meter;
pub mod mini_canvas;
pub mod mini_chart;
#[cfg(widgets_unstripped)]
pub mod progress_circle;
pub mod progressbar;
#[cfg(widgets_unstripped)]
pub mod rating;
pub mod roller;
pub mod scrollbar;
#[cfg(widgets_unstripped)]
pub mod skeleton_loader;
pub mod slider;
pub mod spinner;
pub mod switch;
// Re-export shared helpers.
mod draw_helpers;
pub(crate) use draw_helpers::draw_line;