Any advice regarding the approach to build a small app with a background image, and with specific areas on the image (can define using polygon points/coordinates) that would detect a "tap". For simple 2D point & click game/puzzle? Few questions if I can:
Q1 - Would the only approach be to use CustomPaint (canvas), or just use normal non-canvas flutter image widget? In either case assuming you can detect a tap and get the coordinates of the tap position relative to the image. Recommend approach?
Q2 - (an aside) - happen to know a tool that would one create a polygon over an image, then export the data in the right format to copy/paste into a flutter app to be used in a "was point clicked within this polygon" routine
Q3 - Any other general advice / links associated with what I'm trying to do (2D point & click) appreciated. Have not seen many so perhaps Flutter isn't going to be ideally suited for this? (but would be nice re cross platform and supported by a large company).