Flutter sliver container

后端 未结 1 1677
迷失自我
迷失自我 2021-02-12 10:42

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 11:05

    You can simply use SliverToBoxAdapter :

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