我正在开发一个应用程序,我需要基于底部导航按钮为每个屏幕提供不同的应用程序栏。但就我而言,我只有主 Appbar,或者在某些屏幕上我有双 appbar。我尝试了 Appbar==false 技术,使用prefererrd size 使其大小为0,但它对我不起作用。有什么有用的技术来解决这个问题吗?
Enter code here
appBar: widget.appbar == false
? AppBar(
title: Text(
"Favrite",
style: TextStyle(color: Colors.white),
),
)
: PreferredSize(preferredSize: Size.fromHeight(0), child: AppBar()),
提前致谢。