Flutter sliver container

后端 未结 1 1304
北荒
北荒 2021-02-12 10:11

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 b

相关标签:
1条回答
  • 2021-02-12 10:57

    You can simply use SliverToBoxAdapter :

    SliverToBoxAdapter( 
        child: Container(..),
    )
    
    0 讨论(0)
提交回复
热议问题