How to display body under the AppBar of scaffold widget and not below?

后端 未结 7 1715
谎友^
谎友^ 2021-02-03 20:16

I\'m using a transparent AppBar and I would like to display body behind the transparent AppBar and not bellow. How to do that ?

7条回答
  •  暖寄归人
    2021-02-03 20:49

    You could use

    Scafold(
    extendBodyBehindAppBar: true,
    )
    

    Available in Flutter stable 1.12+

提交回复
热议问题