当前位置 博文首页 > xixi:Flutter 之去除AppBar 阴影

    xixi:Flutter 之去除AppBar 阴影

    作者:[db:作者] 时间:2021-07-29 15:45

    页面本身是白色,所以我想将appbar 也设置成白色,并且需要去除阴影

    child: Scaffold(
              appBar: AppBar(
                title: Text("xixi"),
                backgroundColor: Colors.white,
                elevation: 0,  //默认是4, 设置成0 就是没有阴影了
              ),
              backgroundColor: Colors.white,
    
    cs