-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Does this library support Android? #741
Comments
No. Mobile is planned in the FAR future |
I am a little new to Rust so I am apologise in advance if I do not understand, but like if I am using |
No worries! Welcome to rust! Rust still early days when it comes to UI programming. |
Thanks mate :)
That's a shame :(
I see mate.
I hope it soon comes to Android, would love to use it =D
Would you happen to know another easy to use GUI crate (like this one) but it supports Windows as well as Android? |
As far as I know only partial. Iced is rendering the GUI using some Renderes like wgpu or glow in a windowing shell like winit or glutin. Both winit and glutin are developed by the same devs like android-ndk-rs and could technically work on android (never tried it so I can not gurantee that it works). But having the foundations to support android is only half the step. Iced itself needs to sopport it too. For example: The textinput would need to call the android api to open up the virtual keyboard. |
I see, interesting, is there like an issue that is created where they are currently trying to have better support for Android if you happen to know? |
There is #302, mobile support is a LONG way away. It isn't even on the road map. Being realistic well over a year away from even alpha level functionality. I am not aware of any rust crates for windows + android UI dev. I'm sure there will be eventually, but at this point the best way to do that and still write some Rust code would be Rust as a backend with JS + Electron + React Native for the UI.. You asked for an easy crate for an easy crate for windows + android dev UI dev. As far as I'm aware there is no easy way to do that in any language... I wish you luck! |
Thanks mate :) |
Let's keep the discussion in #302 for now. |
Hi does this crate support Android, if I were to use something like
android-ndk-rs
crate along withiced
?The text was updated successfully, but these errors were encountered: