本文介绍了如何在支架小部件的AppBar下而不是下方显示主体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用透明的AppBar,我想在透明的AppBar后面显示主体,而不是在下面显示.该怎么做?

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

推荐答案

您可以使用

Scafold(
extendBodyBehindAppBar: true,
)

在Flutter稳定版1.12+中可用

Available in Flutter stable 1.12+

这篇关于如何在支架小部件的AppBar下而不是下方显示主体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 13:59