I want to perform animation in my flutter app specifically in Pageview widget to swipe pages such as a real book as in the image
Try this, flip_widget:
FlipWidget(
key: _flipKey,
child: Container(
color: Colors.blue,
child: Center(
child: Text("hello"),
),
),
)