【发布时间】:2019-02-19 21:02:13
【问题描述】:
我正在做 Navigator.pop 操作,我想淡出过渡到页面。 我已经尝试过 Fluro,但没有兴趣实现它。
这是我在做什么:-
Widget build(BuildContext context) {
return Scaffold(
appBar: new AppBar(
title: new Text("Cart"),
leading: Hero(
tag: "cartIcon",
child: Icon(Icons.shopping_cart, color: Colors.yellow),
),
actions: <Widget>[
IconButton(
icon: Icon(Icons.close),
onPressed: () {
Navigator.pop(context);
})
],
),
);
}
【问题讨论】: