我希望小部件可以通过以下两种方式关闭,即下面的方式并将其向下拖动。
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new ... (...),
floatingActionButton: new FloatingActionButton(
onPressed: ()=> exit(0),
tooltip: 'Close app',
child: new Icon(Icons.close),
),
);
}```
您可以使用Draggable小部件进行下拉解雇。https://api.flutter.dev/flutter/widgets/Draggable-class.html