I see there is a variable in test environment of Flutter called this:
tester.allWidgets
It can return all widgets within the view port at the moment.
Is there anyway I can do the same with Flutter code, not inside a unit test?
The specific requirement I have is to locate all scrollable widgets within the current view port. Wondering if there’s an easy way to achieve that.