I've created a custom story with an ElevatedButton at the bottom. When i click the button my click is not recognized and instead it just moves to the next story.
The hack for this to work is:
Wrap Button or your custom widget with GestureDetector and set behavior to HitTestBehavior.deferToChild. Then listen taps with onTapDown.
I've created a custom story with an ElevatedButton at the bottom. When i click the button my click is not recognized and instead it just moves to the next story.