gpt4 book ai didi

animation - 如何在 appBar 图标的购物车图标上添加商品编号?我怎样才能让它动画添加新项目?

转载 作者:IT王子 更新时间:2023-10-29 06:50:04 26 4
gpt4 key购买 nike

我想在图片中像这样在购物车图标上添加商品编号,并希望在将新商品添加到购物车时制作动画。我的购物车图标在 appBar 中。

enter image description here

最佳答案

可以通过appBar中的这段代码来实现。

appBar: new AppBar(

actions: <Widget>[

new Padding(padding: const EdgeInsets.all(10.0),

child: new Container(
height: 150.0,
width: 30.0,
child: new GestureDetector(
onTap: () {
Navigator.of(context).push(
new MaterialPageRoute(
builder:(BuildContext context) =>
new CartItemsScreen()
)
);
},

child: new Stack(

children: <Widget>[
new IconButton(icon: new Icon(Icons.shopping_cart,
color: Colors.white,),
onPressed: null,
),
list.length ==0 ? new Container() :
new Positioned(

child: new Stack(
children: <Widget>[
new Icon(
Icons.brightness_1,
size: 20.0, color: Colors.green[800]),
new Positioned(
top: 3.0,
right: 4.0,
child: new Center(
child: new Text(
list.length.toString(),
style: new TextStyle(
color: Colors.white,
fontSize: 11.0,
fontWeight: FontWeight.w500
),
),
)),


],
)),

],
),
)
)

,)],

关于animation - 如何在 appBar 图标的购物车图标上添加商品编号?我怎样才能让它动画添加新项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51019291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com