How to create a bounded scrollable TabBarView
问题 I need to implement the following layout in Flutter. When the user scrolls, I want the entire layout to scroll (hiding the header and tab bar). However, I can't nest a TabBarView inside a ListView since the TabBarView doesn't have a bounded height and ListViews don't provide a bounded height to their children. I've already seen these questions, but all of them have unsatisfactory answers for this use case: How can I have a TabView with variable height content within a Scrollable View with