2 unstable releases
new 0.2.0-alpha.1 | Oct 27, 2024 |
---|---|
0.1.0 | Oct 16, 2023 |
#3 in #gesture
78 downloads per month
22KB
90 lines
Gesture interaction library for Dioxus.
Pairs great with dioxus-spring!
let element_ref = use_signal(cx, || None);
let (spring_ref, value_ref) = use_spring_signal(cx, [0f32, 0f32]);
use_animated(cx, element_ref, value_ref, |[x, y]| {
format!("width: 200px; height: 200px; background: red; transform: translate({x}px, {y}px);")
});
use_drag(cx, element_ref, move |state, x, y| match state {
DragState::Move => spring_ref.set([x, y]),
DragState::End => spring_ref.animate([0., 0.], Duration::from_millis(500)),
});
render!(div {
onmounted: move |event| element_ref.set(Some(event.data.clone()))
})
Dependencies
~17–26MB
~400K SLoC