Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. onTap: () {
  2. if (_animationController.isCompleted) {
  3. _animationController.reverse();
  4. } else {
  5. _animationController.forward();
  6. }
  7. widget.value == false
  8. ? widget.onChanged(true)
  9. : widget.onChanged(false);
  10. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement