作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 ListView 有如下所示的卡片。我正在尝试动画卡片以在按下时以更大的尺寸打开。
我已经为单张卡实现了这一点,但是我不明白如何为 ListView 做到这一点。在 ListView 元素上添加 Hero 标签后,出现以下错误:
There are multiple heroes that share the same tag within a subtree.
这是
animation .
Widget build(BuildContext context) {
return new Scaffold(
body: Hero(
tag: 'flutterLogo',
child: GestureDetector(
onTap: () => Navigator.push(context,
MaterialPageRoute(builder: (context) => AnimatedPage())),
child: Card(
elevation: 4.0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.0),
),
child: Container(
height: 180,
width: 300,
color: Colors.blue,
),
),
)),
);
}
第二页:
Widget build(BuildContext context) {
return new Scaffold(
body: Stack(
children: <Widget>[
Hero(
tag: 'flutterLogo',
child: Padding(
padding: const EdgeInsets.only(top: 20.0),
child: Card(
elevation: 4.0,
color: Colors.red,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.0),
),
child: Container(
height: 200,
width: 300,
child: Center(child: Text('Hello')),
),
),
),
),
],
),
);
}
这是我的 ListView 的代码:
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
return Hero(
tag: 'flutterLogo',
child: Padding(
padding: const EdgeInsets.only(top: 10.0, bottom: 10),
child: GestureDetector(
onTap: () {
Navigator.push(context,
MaterialPageRoute(builder: (context) => PaymentPage()));
},
child: Card(
elevation: 4.0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.0),
),
child: Container(
height: 180,
width: 150,
),
),
),
),
);
},
childCount: 4,
),
),
这就是列表的样子:
最佳答案
英雄标签应该不同,所以在你的 SliverList
中将您的标签更改为:
tag: 'flutterLogo${index}',
并将标签传递到您的第二页,如下所示(以防它是
StatefulWidget
):
class SecondPage extends StatefulWidget {
final String heroTag;
SecondPage({Key key, this.heroTag}) : super(key: key);
@override
_SecondPageState createState() => _SecondPageState();
}
然后不要在第二页中使用简单的标签,而是使用以下内容:
tag: widget.heroTag,
关于flutter - 如何在 Flutter 中将英雄动画添加到我的 ListView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62794500/
我是一名优秀的程序员,十分优秀!