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/904ac4d772fb14fb3592ee321fd20595 to your computer and use it in GitHub Desktop.
Save skydoves/904ac4d772fb14fb3592ee321fd20595 to your computer and use it in GitHub Desktop.
unstable_class
data class InherentlyUnstableClass(var text: String)
@Composable
fun UnstableComposable(
unstableClass: InherentlyUnstableClass
) {
Text(
text = unstableClass.text
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment