这是我在主页上的代码
showModalBottomSheet(
context: context,
builder: (BuildContext _) {
return Container(
height: MediaQuery.of(context).size.height - MediaQuery.of(context).padding.top,
child: PageModal()
);
},
isScrollControlled: true,
).then((value){
print(value); // show data
});
在第二页中,我像这样在appBar上创建领导,并且有效
leading: IconButton(
onPressed: (){
Navigator.of(context).pop(data);
},
icon: Icon(Icons.arrow_back), color: Colors.black87
),
但是,如何发送数据并通过上下滑动来获取数据呢?谢谢