如何通过向下拖动来关闭该widgte

问题描述 投票:0回答:1

我希望小部件可以通过以下两种方式关闭,即下面的方式并将其向下拖动。

  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),
          ), 
    );
  }```
flutter flutter-layout
1个回答
0
投票

您可以使用Draggable小部件进行下拉解雇。https://api.flutter.dev/flutter/widgets/Draggable-class.html

© www.soinside.com 2019 - 2024. All rights reserved.