如何在垂直拖动时调整可拖动小部件的反馈大小

时间:2019-06-17 13:28:04

标签: flutter flutter-layout flutter-animation

我无法获得Draggable小部件的反馈,无法根据Gesture事件调整大小。 GestureDetecor和Listener似乎无法在Draggable的反馈中起作用。

Center(
            child: Draggable(
                data: "test",
                child: SizedBox(
                    width: MediaQuery.of(context).size.width / 2,
                    height: MediaQuery.of(context).size.height / 10,
                      child: Center(
                        child: Text(
                          "test"
                        ),
                      ),
                    )),
                feedback: Container(
                    width: resizedWidth,
                    height: resizedHeight,
child:
GestureDetector(
                    onVerticalDragUpdate: (DragUpdateDetails details){
                      setstate({
                        resizedWidth = details.globalposition.dx;
                        resizedheight = details.globalposition.dy;
                      }),

                            child: Center(
                                child: Text("test"
                                    ),
                                  )))))),


``

0 个答案:

没有答案