请问如何隐藏底部导航栏?
来源:2-1 Android开发者如何快速上手Flutter开发
非同凡想之人
2022-04-10
我用了Scaffold ,appBar设为null是有效的。但是 bottomNavigationBar 设为null,底部导航栏依然存在。
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: const Color(0XFF007EB4),
leading: const CircleAvatar(
radius: 20,
backgroundImage: NetworkImage(
"https://xxxx.oss-cn-beijing.aliyuncs.com/official_site/WechatIMG1331.jpeg"),
),
title: Text(
title,
),
),
bottomNavigationBar: null,
body: const Text("不需要底部导航栏"));
}
写回答
1回答
-
CrazyCodeBoy
2022-04-11
检查下上级页面是否有设置过bottomNavigationBar呢
022022-04-12
相似问题
Drawer这里怎么遮住底部导航
回答 1
请问第15章的课件在哪儿?
回答 1