Katudi
Katudi

Reputation: 23

How to add interactive pins on images in flutter?

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!

Upvotes: 1

Views: 1652

Answers (1)

boformer
boformer

Reputation: 30103

The Stack widget is what you want:

Stack(
  children: <Widget>[
    <your image>,
    Positioned(
      left: 50.0,
      top: 30.0,
      child: <your pin>
    ),
    ...
  ],
)

Upvotes: 1

Related Questions