Is there a kmm library for simple key value storag...
# multiplatform
a
Is there a kmm library for simple key value storage (like SharedPreferences on Android) but that is observable via a flow? Something along the lines of:
Copy code
interface KeyValueStore<T> {
  fun <T> observe(key: String): Flow<T>
}
r
I'm happy to hear feedback if there's anything that doesn't work for you.
253 Views