Flutter sliver container

后端 未结 1 1295
北荒
北荒 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)
提交回复
热议问题