flutter 取消顶部导航栏的阴影和背景色,只要设置 AppBar 相关属性即可
AppBar( elevation: 0, centerTitle: true, backgroundColor: Colors.transparent, title: Text(widget.title) )
elevation: 0
用于取消阴影
centerTitle: true
用于设置标题居中
backgroundColor: Colors.transparent
用于设置背景透明
目前尚无回复