Andre Artus
Andre Artus
I ran into the same issue. ``` MyViewModel( private val param1: String, private val param2: String?, ... ``` param2 would be loaded with the value from param1. Koin version: 3.2.0
The NowInAndroid sample App from Google passes ` WindowSizeClass` around so that each composable can adapt as needed. Is there a mechanism to provide this to generated destinations?
Thanks, that will be helpful.
@rileymd88 , Why don;t you write all new data to the local db (i.e. room), then use a sync adapter to periodically (given connectivity etc.) sync the local db with...
@prabinshrestha, You can extract a common interface and keep it at the domain level. The various specific implementations can then be isolated (and more easily mocked).