multicontroller 0.1.1
multicontroller: ^0.1.1 copied to clipboard
MultiController is a widget that helps to create and dispose of multiple Controller (extending AnimationController), as well as chaining controllers for more advanced animations.
MultiController #
MultiController is a widget that helps to create and dispose of multiple Controller (extending AnimationController), as well as chaining controllers for more advanced animations.
Explanation #
This package was created to abstract away some complexities when implementing advanced animations.
This package allows you to: #
- Create multiple
controllers with thecreateControllermethod withinMultiController'sbuildermethod. - Call
chain(otherController)andchainList(otherController)to start aControllerwhen another finishes.
See Example for how to use it.