kalismeras61 / flutter_page_transition

This is Flutter Page Transition Package
BSD 2-Clause "Simplified" License
475 stars 57 forks source link

Is there any way to increase transition speed? #48

Closed icorradi-inco closed 3 years ago

kalismeras61 commented 3 years ago

Yes, default one is 300 ms. You can change duration like below

Navigator.push(context, PageTransition(type: PageTransitionType.rotate, duration: Duration(milliseconds: 100), child: DetailScreen()));

also you can change reverseDuration when pop the screen.