add cursor flinging

This commit is contained in:
Mona Mayrhofer 2026-03-03 17:46:51 +01:00
parent 5f89601ef2
commit d0a458b450
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 374AB152BDEBA1AE
16 changed files with 511 additions and 1692 deletions

View file

@ -1,4 +1,4 @@
use crate::components::MouseArea;
use crate::components::{Controls, MouseArea};
use dioxus::prelude::*;
/// The Home page component that will be rendered when the current route is `[Route::Home]`
@ -10,7 +10,7 @@ pub fn Home() -> Element {
rsx! {
div {
class: Styles::container,
MouseArea { }
Controls { }
}
}
}