I have trouble integrating images with interactive pins on Flutter.is it even possible? if so, how can I do it? Im looking for something similar to WordPress's Image Mapper plugin!
Asked
Active
Viewed 1,368 times
1
-
So you want pins that can be moved by the user? – boformer Sep 01 '18 at 23:36
-
1Thank you for your reply.The pins will be used to identify objects in a photo.For example a clothing e-commerce app where an image of a outfit could have pins for each clothing item.The pin displaying a price of the clothing item and has an onTap callback adding the item to a cart. – Katudi Sep 02 '18 at 00:11
1 Answers
1
The Stack
widget is what you want:
Stack(
children: <Widget>[
<your image>,
Positioned(
left: 50.0,
top: 30.0,
child: <your pin>
),
...
],
)

boformer
- 28,207
- 10
- 81
- 66