I've just upgraded Flutter from 2.2 to 2.5, but my web app is behaving differently. In 2.2 it was possible to scroll vertically in a SingleChildScrollView and horizontally in a TabBarView by dragging without additional code. Dragging doesn't do anything now.
I would like to revert to the original behaviour from 2.2. Dragging should scroll vertically and horizontally.
However, adding different ScrollPhysics to those two widgets does not have any effect. I have found solutions that recommend wrapping the widget in a GestureDetector. This leads to a lot boilerplate code. Is there any other way to do it?