
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 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.
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 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.