使用 Flutter 显示/隐藏带有下拉抽屉动画的小部件

问题描述 投票:0回答:1

使用 flutter,有没有办法用这种类型的动画显示或隐藏小部件:

提前致谢,:)

flutter flutter-animation
1个回答
0
投票

您可以使用 可扩展

ExpandableNotifier(  // <-- Provides ExpandableController to its children
  child: Column(
    children: [
      Expandable(           // <-- Driven by ExpandableController from ExpandableNotifier
        collapsed: ExpandableButton(  // <-- Expands when tapped on the cover photo
          child: buildCoverPhoto(),
        ),
        expanded: Column(  
          children: [
            buildAllPhotos(),
            ExpandableButton(       // <-- Collapses when tapped on
              child: Text("Back"),
            ),
          ]
        ),
      ),
    ],
  ),
);
© www.soinside.com 2019 - 2024. All rights reserved.