如何在颤动的图像上添加交互式引脚?

问题描述 投票:0回答:1

我无法在Flutter上将图像与交互式引脚集成。它甚至可能吗?如果是的话,我该怎么办呢?我正在寻找类似于WordPress的Image Mapper插件的东西!

image mapping flutter interactive pins
1个回答
0
投票

Stack小部件是你想要的:

Stack(
  children: <Widget>[
    <your image>,
    Positioned(
      left: 50.0,
      top: 30.0,
      child: <your pin>
    ),
    ...
  ],
)
© www.soinside.com 2019 - 2024. All rights reserved.