-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clipboard not working #1
Comments
I am not sure if the clipboard is automatically written, that might make the |
jup tried that as well.. |
Ok it seems that X11-clipboard that is used by copypasta which is used by use_clipboard only work server side this might be something to add to the docs. kind regards |
using the web-sys crate one can use the clipboard inside a client side component. let cb = web_sys::window().unwrap().navigator().clipboard();
cb.write_text("Working"); |
It already says that only native renderers are supported https://github.com/dioxus-community/dioxus-clipboard?tab=readme-ov-file#support 😄 |
using latest dioxus
and latest dioxuss-clipboard
The text was updated successfully, but these errors were encountered: