In the latest Flutter they have enabled a classic HandCursor for Desktop and Web with:
MouseRegion(mouseCursor: SystemMouseCursors.click)
Would be nice if this could be wrapped around the .gestures() call if any of the onTap fxns are overriden. Or just expose a variable for it?
Alternatively a .clickable(Function onTapUp, Function onTapDown) could be really cool? Which is just a MR + GT and some syntactic sugar because we never really care about TapUpDetails
In the latest Flutter they have enabled a classic HandCursor for Desktop and Web with:
Would be nice if this could be wrapped around the .gestures() call if any of the onTap fxns are overriden. Or just expose a variable for it?
Alternatively a
.clickable(Function onTapUp, Function onTapDown)could be really cool? Which is just a MR + GT and some syntactic sugar because we never really care aboutTapUpDetails