This is a Flutter Specific Query.
- I Want to achieve the Layout Referenced in the Image above. Two Tabs Below a Container.
- The Tabs can be switched using Swipe Animation like that in a Page View.
- The Tabs Contain Dynamically Generated Widgets from Provider.
- The Entire Page along with the Fixed Container must be Scroll-able.
When Switching between the Tabs the fixed container should stay in place and only tab Content(Column of Widgets) should swipe left and right.
What I've Tried :
Using a Parent List View and Nesting the Fixed Container Child and Using Tab Bar to switch the Widget using Animated Switcher and Slide Animation. Here the Problem is i cannot swipe left and right and create the Page View like Effect. I also tried Nesting Page-View inside List-View but since the Page-View does not have a fixed height ( because the tab contents are dynamically generated ).
A few many more concepts i tried to tackle but the issue every time was that the tab contents are not having a fixed height.
I really want to achieve this Layout and i want to know if there's any way.