Created
March 7, 2022 20:32
-
-
Save MessiasLima/b9533a7172147017559992a6d6c7d6bc to your computer and use it in GitHub Desktop.
Sample composable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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