hello everyone! I'm building an app with compose m...
# multiplatform
j
hello everyone! I'm building an app with compose multiplatform, with web and android targets. Everything is 100% doable in android, but for web I'm not sure... we're working on a POC for each functionality. So far: • Showing a webview: done • Taking a picture: done, but with a lot of workarounds. The solution doesn't open the camera, it renders the "live preview" in the UI • Uploading an existing picture: haven't tried yet • Biometric auth: haven't tried yet Are there any good examples of taking a picture, uploading a picture and biometric auth? There is no info or tutorials about this online I´m using kotlin WASM
s
For the uploading part checkout FileKit https://github.com/vinceglb/FileKit
j
great thanks!