Skip to content

Instantly share code, notes, and snippets.

@skydoves
Last active August 23, 2022 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skydoves/d6f17314f85594d442c020e125753fae to your computer and use it in GitHub Desktop.
Save skydoves/d6f17314f85594d442c020e125753fae to your computer and use it in GitHub Desktop.
stable_class
data class InherentlyStableClass(val text: String)
@Composable
fun StableComposable(
stableClass: InherentlyStableClass
) {
Text(
text = stableClass.text
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment