Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Flutter 上将图像与交互式图钉集成时遇到了麻烦。这有可能吗?如果是这样,我该怎么做?我正在寻找类似于 WordPress 的 Image Mapper 插件的东西!
小Stack部件是您想要的:
Stack
Stack( children: <Widget>[ <your image>, Positioned( left: 50.0, top: 30.0, child: <your pin> ), ... ], )