ajour-widgets 1.0.1

Widget library for Ajour
1
2
3
4
5
6
7
8
9
10
11
use iced_native::Point;

#[derive(Debug, Default)]
pub struct State {
    pub resize_hovering: bool,
    pub resizing: bool,
    pub starting_cursor_pos: Option<Point>,
    pub starting_left_width: f32,
    pub starting_right_width: f32,
    pub resizing_idx: usize,
}