Created
November 29, 2023 23:15
-
-
Save fvilarino/be6984c9a8b5cc0cb78590c2b5933563 to your computer and use it in GitHub Desktop.
Stability - Stable Composables
This file contains hidden or 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
restartable skippable scheme("[androidx.compose.ui.UiComposable]") fun SampleUi( | |
stable state: State | |
) | |
restartable skippable scheme("[androidx.compose.ui.UiComposable]") fun PrimitivesMethod( | |
stable value: Int | |
stable prompt: String | |
stable modifier: Modifier? = @static Companion | |
) | |
restartable skippable scheme("[androidx.compose.ui.UiComposable]") fun CollectionsMethod( | |
stable values: Set<Int> | |
stable prompts: List<String> | |
stable modifier: Modifier? = @static Companion | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment