Circular List


Vertical scrollable value picker for Jetpack Compose. It has two components InfiniteCircularList and CircularList.
Installation
Add it in your root build.gradle or settings.gradle at the end of repositories:
repositories {
mavenCentral()
}
Add the dependency
dependencies {
implementation("io.github.rajdeepvaghela:viewslider:2.0.0")
}
Usage
var year by remember {
mutableIntStateOf(2024)
}
val yearList = remember {
(2020..2025).toList()
}
CircularList(
width = 100.dp,
itemHeight = 40.dp,
items = yearList,
initialItem = year,
textColor = Color.LightGray,
selectedTextColor = Color.Black,
onItemSelected = { index, item ->
year = item
},
prepareDisplayItem = {
"2K ${it % 2000}"
}
)
License
Copyright 2024 Rajdeep Vaghela
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance the License.
You may obtain a copy of the License at
http:
Unless applicable law agreed to writing, software
distributed under the License distributed an BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied.
See the License the specific language governing permissions
limitations under the License.