How to jump to another page with pageview flutter

You can use this: void onAddButtonTapped(int index) { // use this to animate to the page pageController.animateToPage(index); // or this to jump to it without animating pageController.jumpToPage(index); } Pass the function as params: class first { final void Function(int) onAddButtonTapped; return Container( // call it here onAddButtonTapped(2); ); } class Second { final void Function(int) … Read more