You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Stable nullsafety release.
BREAKING: opt into null safety
Dart SDK constraints: >=2.12.0-0 <3.0.0
BREAKING: Removed prevState from IndicatorController class.
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 use prevState and didChangeState method, you can use IndicatorStateHelper. Take a look at check_mark_indicator.dart or warp_indicator.dart for example usage.
Added IndicatorStateHelper class.
Added IndicatorController unit tests.
Added warp indicator example.
Added stopDrag method to the IndicatorController class. It allows you to stop current user drag.