You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

106 lines
3.3 KiB

package benchmarks.lazygrid
import androidx.compose.foundation.gestures.scrollBy
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.grid.GridCells
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
import androidx.compose.foundation.lazy.grid.items
import androidx.compose.foundation.lazy.grid.rememberLazyGridState
import androidx.compose.material.Card
import androidx.compose.material.Checkbox
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.runtime.withFrameMillis
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.semantics.contentDescription
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
@Composable
fun LazyGrid() {
val itemCount = 12000
val entries = remember {List(itemCount) { Entry("$it") }}
val state = rememberLazyGridState()
var smoothScroll by remember { mutableStateOf(false)}
MaterialTheme {
Column {
Row {
Checkbox(
checked = smoothScroll,
onCheckedChange = { value -> smoothScroll = value}
)
Text (text = "Smooth scroll", modifier = Modifier.align(Alignment.CenterVertically))
}
LazyVerticalGrid(
columns = GridCells.Fixed(4),
modifier = Modifier.fillMaxWidth().semantics { contentDescription = "IamLazy" },
state = state
) {
items(entries) {
ListCell(it)
}
}
}
}
var curItem by remember { mutableStateOf(0) }
var direct by remember { mutableStateOf(true) }
if (smoothScroll) {
LaunchedEffect(Unit) {
while (smoothScroll) {
withFrameMillis { }
curItem = state.firstVisibleItemIndex
if (curItem == 0) direct = true
if (curItem > itemCount - 100) direct = false
state.scrollBy(if (direct) 5f else -5f)
}
}
} else {
LaunchedEffect(curItem) {
withFrameMillis { }
curItem += if (direct) 50 else -50
if (curItem >= itemCount) {
direct = false
curItem = itemCount - 1
} else if (curItem <= 0) {
direct = true
curItem = 0
}
state.scrollToItem(curItem)
}
}
}
data class Entry(val contents: String)
@Composable
private fun ListCell(entry: Entry) {
Card(
modifier = Modifier
.fillMaxWidth()
.padding(8.dp)
) {
Text(
text = entry.contents,
textAlign = TextAlign.Center,
style = MaterialTheme.typography.h5,
modifier = Modifier.padding(16.dp)
)
}
}