Skip to content

Instantly share code, notes, and snippets.

@MessiasLima
Created March 7, 2022 20:32
Show Gist options
  • Save MessiasLima/b9533a7172147017559992a6d6c7d6bc to your computer and use it in GitHub Desktop.
Save MessiasLima/b9533a7172147017559992a6d6c7d6bc to your computer and use it in GitHub Desktop.
Sample composable
@Composable
fun SampleComposable(viewModel: StoreViewModel = viewModel()){
val uiState by viewModel.uiState.collectAsState(initial = UiState.Idle)
// Some nice composables here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment