vertical_steps_indicator 0.0.2
vertical_steps_indicator: ^0.0.2 copied to clipboard
A simple flutter steps indicator widget.
All notable changes to this project will be documented in this file.
0.0.2 - 2025-01-07 #
Added #
- Introduced
StepItemModelto provide more flexibility for step customization. Each step can now have:titlesubtitle1subtitle2contents
- Added support for
IndicatorTypewith the following options:IndicatorType.onlyCurrentIndicatorType.previous
- Added
stepItemHeightparameter to control the height of each step item. - Added widget overrides for step indicators:
selectedIndicatorfor the current step.normalIndicatorfor other steps.
Changed #
- Updated
stepsparameter to accept aList<StepItemModel>instead of a genericList. - Improved validation for
StepItemModel: eithertitleorcontentsmust be provided, or an error is thrown.