
Vertical scrollable value picker offering infinite and finite circular lists, customizable item height, width, colors, initial selection, display formatting, and selection callback.
Vertical scrollable value picker for Jetpack Compose. It has two components InfiniteCircularList and CircularList.
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")
} 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}"
}
)Copyright 2024 Rajdeep Vaghela
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Vertical scrollable value picker for Jetpack Compose. It has two components InfiniteCircularList and CircularList.
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")
} 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}"
}
)Copyright 2024 Rajdeep Vaghela
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.