请问 flutter 如何去掉 appBar Title 部分高度?

请问图中红色框子里的这一栏怎么去掉呢?

class HomeScreenState extends State<HomeScreen> {

@override

Widget build(BuildContext context) {

return Scaffold(

appBar: AppBar(

brightness: Brightness.light,

),

body: SearchBar(),

backgroundColor: Colors.orange,

);

}

}

回答

appBar传入null
或者用搜索栏
flutter搜索栏代码参考

以上是 请问 flutter 如何去掉 appBar Title 部分高度? 的全部内容, 来源链接: utcz.com/a/38947.html

回到顶部