InteractiveViewer(
child: FlutterLogo(size: 1000),
)
FlutterLogo
比视口大,因此我将其包裹在InteractiveViewer
中,但没有平移。我检查了panEnabled
,默认情况下它是true
。我想念什么?
答案 0 :(得分:0)
如果您的窗口小部件大于视口,则需要将constrained
设置为false
。
constrained:如果设置为false,则子级将获得无限的约束。当孩子的身材要比InteractiveViewer大时,这通常很有用。
InteractiveViewer(
constrained: false, // Set it to false
child: FlutterLogo(size: 1000),
)