使用 After Effects 的图书应用 UI 的 Flutter PageView 翻转动画

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

我想在我的 flutter 应用程序中执行动画,特别是在 Pageview 小部件中滑动页面,例如图像中的真实书籍

试试这个,flip_widget:

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