I have an image, specifically, it's loaded in from Image.asset(..).
It's wrapped in an extended widget, and has its own context.
I can click on it, and get the local position on which I clicked (x/y local to the image/context).
All I want to do from that point is get some information (specifically, color and alpha/opacity, but color is key). I really just want THAT context's image information, and the ability to definitively say "I need byte #" or "I need pixel info from X and Y". I feel like this HAS to exist in Flutter as it's pretty trivial in many (most?) other platforms with a rich UI.
Am I missing something simple, or is this just harder in this platform than I'm mentally allowing for?
Or should I load the html library and do what I need in there?
Thanks!
(by way of history, I'm fluent in iOS dev, C# and .Net, HTML and canvas work, and a host of other platforms over more years than I want to remember, etc, but fairly new to Flutter because we're doing an emergency rewrite of an app we had in Trigger, which is not behaving well any more. Thanks.) :)