Hoping for more support for compose component reso...
# compose
a
Hoping for more support for compose component resource https://github.com/coil-kt/coil/issues/2812. Especially with the raw files, hoping to have the
.list()
to get list of files like in android assets
k
Resources are not typical files in a file system. Think about wasm web resources
a
it sucks, especially I don't target wasm
k
Usually you don't need resources as files. This resources are part of your UI. If you need files, you are supposed to download a file bundle and managing it separately. But there is a workaround, you can save a list of all required resources in your code. Then you are able to read them as bytes
a
kinda downgrade from android assets 😭