Flutter Zoomable Widget

后端 未结 5 668
后悔当初
后悔当初 2020-11-30 09:28

What I want to build is a widget that can make its child widget zoomable similar to the zoomable behavior.

Gestures I want to cover are

  1. Pinch To Zoom
5条回答
  •  隐瞒了意图╮
    2020-11-30 09:42

    You can use Zoom Widget Zoom Widget only need set a canvas size and child

        Zoom(
        width: 1800,
        height: 1800,
        child: Center(
            child: Text("Happy zoom!!"),
        )
    );
    

提交回复
热议问题