首页 > 解决方案 > Flutter:AppBar 背景图片

问题描述

是否可以向 Scaffold 的 AppBar 添加背景图像?我知道 sliver,但是当您向下滚动时,图像会被隐藏并且 AppBar 会改变颜色,对吗?所以我想知道这是否可能,如果没有,是否有任何现有的解决方法?谢谢!

标签: dartflutterappbar

解决方案


而不是使用StackZulfiqar 这样flexibleSpace的小部件,而是在小部件的参数中传递您的背景图像AppBar

 @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('App Bar!'),
        flexibleSpace: Image(
          image: AssetImage('assets/image.png'),
          fit: BoxFit.cover,
        ),
        backgroundColor: Colors.transparent,
      ),
      body: Container(),
    );
  }

推荐阅读