VerticalStepper
2.0.0indexedCustomizable vertical stepper component with animated transitions, support for custom step layouts and alternate components, plus callbacks for animation completion.
0
Stars
—
Used by
dependents
—
Health
/ 100
Customizable vertical stepper component with animated transitions, support for custom step layouts and alternate components, plus callbacks for animation completion.
It is a customizable vertical stepper with ability to animate and use custom layouts for the content.
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")
}
val stepData = StepData(
id = 0L,
stepState = StepState.Visible,
title = "Title"
)
Step(
stepData = stepData,
onAnimationDone = {
}
)
To use a custom layout for a stepper
Step(
stepData = stepData,
useAlternateComponent = true,
alternateComponent = {
Button(
onClick = {
// do something
}
) {
Text(text = "Proceed")
}
},
onAnimationDone = {
}
)
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.
Surfaced from shared tags and platforms — no rankings paid for.