Skip to content

Instantly share code, notes, and snippets.

@axelbrians
Created August 18, 2021 18:24
Show Gist options
  • Save axelbrians/59890cf1d33aa5d4fabd2820446d5a9c to your computer and use it in GitHub Desktop.
Save axelbrians/59890cf1d33aa5d4fabd2820446d5a9c to your computer and use it in GitHub Desktop.
Note data class for animating LazyColumn
data class Note(
var id: Int,
var title: String = "",
var content: String = "",
var isVisible: Boolean = true
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment