uzor 1.1.4

Core UI engine — geometry, interaction, input state
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Radio group theme contract

pub trait RadioTheme {
    fn circle_radius(&self) -> f64;
    fn circle_border_color(&self) -> u32;
    fn circle_fill_color(&self) -> u32;
    fn circle_selected_color(&self) -> u32;
    fn label_color(&self) -> u32;
    fn description_color(&self) -> u32;
    fn hover_background(&self) -> u32;
    fn row_height(&self) -> f64;
    fn gap(&self) -> f64;
}