best-flutter / transformer_page_view

PageTransformer for flutter
Other
521 stars 149 forks source link

Go Next and Previous Screen with button #16

Open CR-97 opened 5 years ago

CR-97 commented 5 years ago

How can i go to next or previous screen by implement the button

chrystoffer commented 4 years ago

final _controller = new TransformerPageController( initialPage: 0, itemCount: 2, loop: false, );

TransformerPageView( pageController: _controller, .... );

_controller.previousPage( duration: Duration(seconds: 4), curve: Curves.elasticOut, );

_controller.nextPage( duration: Duration(seconds: 4), curve: Curves.elasticOut, );