Skip to content

Instantly share code, notes, and snippets.

@teegarcs
Created December 13, 2023 14:02
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 teegarcs/2ae893f30a9bfb1952f6f14243cddc3f to your computer and use it in GitHub Desktop.
Save teegarcs/2ae893f30a9bfb1952f6f14243cddc3f to your computer and use it in GitHub Desktop.
Lazy List with multiple content types.
LazyColumn {
items(contentList) { content ->
when(content){
is ImageOnly -> MessageRow(content)
is ImageTextRight -> ImageTextRight(content)
is ImageTextLeft -> ImageTextLeft(content)
is ImageTextTop -> ImageTextTop(content)
//...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment