Created
August 18, 2021 18:24
-
-
Save axelbrians/59890cf1d33aa5d4fabd2820446d5a9c to your computer and use it in GitHub Desktop.
Note data class for animating LazyColumn
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
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