android-compose-mvvm-foodies icon indicating copy to clipboard operation
android-compose-mvvm-foodies copied to clipboard

Android sample app following best practices: Kotlin, Compose, Coroutines and Flow, Hilt, JetPack Navigation, ViewModel, MVVM, Retrofit, Coil

Results 2 android-compose-mvvm-foodies issues
Sort by recently updated
recently updated
newest added

BaseViewModel: private val _viewState: MutableState = mutableStateOf(initialState) val viewState: State = _viewState @Composable private fun FoodApp() { val viewModel: FoodCategoriesViewModel = viewModel() val state = viewModel.viewState.value Any changes to value...

Hi, Really like the implementation but I am struggling to find a way how to test view models. To be precise, how you would assert all values set to compose...

bug
good first issue