请问如何隐藏底部导航栏?

来源: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呢

0
2
CrazyCodeBoy
你Navigator是怎么设置的呢
2022-04-12
共2条回复

Flutter从入门到进阶 实战携程网App 一网打尽核心技术

解锁Flutter开发新姿势,,系统掌握Flutter开发核心技术。

4788 学习 · 3270 问题

查看课程