我需要在Flutter中重现一个浮动动作按钮,该按钮可以转换为横跨整个屏幕的新表面

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

我需要再现FAB的效果,该效果可以像Google在本video中所建议的那样在全屏页面上扩展,但是我不知道该怎么做。您有什么建议吗?

flutter material-design floating-action-button flutter-animation
1个回答
0
投票

请参见animations library

根据自述文件:

该软件包包含预先罐装的动画,以实现通常所需的效果。可以根据您的内容对动画进行自定义,然后将其放入您的应用程序中,以使用户满意。

这里使用的动画是一个OpenContainer。示例代码:

OpenContainer(
      transitionDuration: 500.milliseconds,
      closedBuilder: (BuildContext c, VoidCallback action) => Text("Click Me"),
      openBuilder: (BuildContext c, VoidCallback action) => SomeNewPage(),
      tappable: true,
    )

入门示例教程:

Flutter: The new 'animations' package explained

© www.soinside.com 2019 - 2024. All rights reserved.