I have a PageView with four pages in it. I want to start on the third page. That means there are two pages available when the user scrolls up and one page when the user scrolls down.
I tried:
home: PageView(
   controller: MyPageController(),
   children: [Page1(), Page2(), Page3(), Page4()],
   scrollDirection: Axis.vertical,
),
With:
class MyPageController extends PageController {
   @override
   int get initialPage => 3;
}
Unfortunately, that doesn't help me.
 
     
     
    