What is the difference between AbsorbPointer
and IgnorePointer
in flutter?
Docs mention:
AbsorbPointer prevents its subtree from receiving pointer events by terminating hit testing at itself.
IgnorePointer, which also prevents its children from receiving pointer events but is itself invisible to hit testing.
I didn't get what is the real life difference between the two.