I've been trying for a while now but I cannot get it to work.
I want to create a list view in a CustomScrollView with a CupertinoSliverNavigationBar. The SliverList has to be scrollable horizontally. Also, it should have one header row that sticks to the top of the view.
Please see the example here: https://dartpad.dev/?id=38c0825f27c1b3395dd22794a2567e64. Note that the body can be scrolled horizontally.
I want to make the red header row sticky so that it remains visible at all times while the blue content is scrolling.
Problem is that the header row must be inside the SingleChildScrollView and the SizedBox because otherwise it would not have the required width. But once it is inside there I cannot make it sticky anymore.
Many thanks for any pointers.