StackedPageView constructor

const StackedPageView({
  1. Key? key,
  2. required PageController controller,
  3. ScrollPhysics? physics,
  4. required TabsRouter router,
  5. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  6. Axis scrollDirection = Axis.horizontal,
})

Implementation

const StackedPageView({
  Key? key,
  required this.controller,
  this.physics,
  required this.router,
  this.dragStartBehavior = DragStartBehavior.start,
  this.scrollDirection = Axis.horizontal,
}) : super(key: key);