v1.0.0-nullsafety.1
Pre-release
Pre-release
·
132 commits
to master
since this release
Changes:
- Stable nullsafety release.
- BREAKING: Removed
prevStatefromIndicatorControllerclass.
Because flutter only marks the widget that it is ready for rebuild, it is possible that the controller state will change more than once during a single frame what causes one or more steps to be skipped. To still useprevStateanddidChangeStatemethod, you can useIndicatorStateHelper. Take a look atcheck_mark_indicator.dartorwarp_indicator.dartfor example usage. - Added
IndicatorStateHelperclass. - Added
IndicatorControllerunit tests. - Added warp indicator example.