Skip to content

Instantly share code, notes, and snippets.

@Rokata9
Created August 17, 2020 13:01
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 Rokata9/856bc5cdd25aa187a9e6783c747401b1 to your computer and use it in GitHub Desktop.
Save Rokata9/856bc5cdd25aa187a9e6783c747401b1 to your computer and use it in GitHub Desktop.
package com.example.secondtry
import androidx.compose.foundation.lazy.LazyColumnFor
import androidx.compose.runtime.Composable
import kotlin.time.ExperimentalTime
@ExperimentalTime
@Composable
fun WallpostsList(list: ArrayList<Wallpost>) {
LazyColumnFor(list) { item ->
WallpostView(wallpost = item)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment