Search code examples
flutterflutter-animation

Flutter PageView turn and flip animation for book app UI using After Effects


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 enter image description here


Solution

  • Try this, flip_widget:

    FlipWidget(
        key: _flipKey,
        child: Container(
            color: Colors.blue,
            child: Center(
                child: Text("hello"),
            ),
        ),
    )