Hello, i've seen a lot of questions about "how do I do X on android", but i havent' seen whether this is something we should already do or not.
If I have
input {
id: "profile-photo-upload",
r#type: "file",
accept: "image/*",
style: "display: none;",
required: true,
onchange: user_submit_image,
}
on linux, this opens the file picker, great! I naively thought that because we're using a web renderer, maybe this will work on android like it does on a web browser.
So i made my beautiful input form only to discover... it doesn't. But, im hoping that maybe this is a permissions thing? Do I need to edit a manifest.xml or something? I'm a bit new to this, both in general and in the case of doing it for a dioxus app, so any advice would be great 🥺
Really hoping I didn't just open up a giant rabbit hole.. ><