Few question before I start making #8482
Answered
by
FabianLars
shashankx86
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
FabianLars
Dec 29, 2023
Replies: 1 comment 2 replies
-
Why? :D
Yes, disable "decorations".
Yes, look for configs and functions with "position" in their name and maybe "center" if that's what you want anyway.
I don't understand that but there are no "native" window animation apis in tauri if that answer the question? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
stuff like the native
mouseover
event should work. Tauri doesn't expose a general input event system yet so using what the webview/browser offers is probably the only way for now. Maybe https://crates.io/crates/rdev too if you can/want to use rust.Yeah, you can't directly animate windows. You can try to set the window positions in a loop yourself but that may be choppy or weird U…