I wanted to swipper the first two widgets horizontally and the other scroll widgets vertically from the first widget how to do with pageview
body: PageView(
controller: controller,
scrollDirection: Axis.vertical,
child: Column(
children: <Widget>[
SizedBox(
child: PageView(
scrollDirection: Axis.horizontal
children: [
Widget1(),
Widget2()
]),
),
Widget3(),
Widget4(),
widget5(),
widget6(),
],
),
),```