Flutter sliver container

Issue

I’m new to flutter and I’m not able to achieve the layout I want.

I have one sliverAppBar with 3 tabs. The content of one of the tabs has to be a ScrollView compound by one container with fixed size(with an image as background) and a ListView.

I’ve tried to do this with a CustomScrollView but I don’t know how to create the container as it is not a sliver.

Can you point me in the right direction?

Regards, Diego.

Solution

You can simply use SliverToBoxAdapter :

SliverToBoxAdapter( 
    child: Container(..),
)

Answered By – anmol.majhail

Answer Checked By – Timothy Miller (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *