英文:
How to pinch to zoom listview in Flutter?
问题
我有一个像下面图片那样的用户界面,但无法通过捏合手势进行缩放。
我想要像Google日历一样进行缩放。我将视频固定到这里 Google日历缩放视频链接
我的用户界面:
我尝试使用InteractiveViewer
,但缩放起来很困难。
英文:
I have a UI like image below and I cannot pinch to zoom it.
I wanna zoom it like Google Calendar. The video I pin to here Link video zoom of Google Calendar
My UI:
I tried using InteractiveViewer
but it's hard to zoom
答案1
得分: 1
这是一个包 zoom_widget。你可以尝试使用。
代码示例:
Zoom(
maxZoomWidth: 1800,
maxZoomHeight: 1800,
child: Center(
child: pageContainer(),//你的小部件
)
)
英文:
There is a package zoom_widget. You can try.
Code sample :
Zoom(
maxZoomWidth: 1800,
maxZoomHeight: 1800,
child: Center(
child: pageContainer(),//youre widget
)
)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论