轻松处理ListView上滑 AppBar 变色的问题。
- 方法一:使用的是Material 3,可以给surfaceTintColor设置颜色,同backgroundColor一个颜色。
AppBar(
backgroundColor: backgroundColor,
surfaceTintColor: backgroundColor, //添加这行
)
- 方法二:scrolledUnderElevation: 0, elevation: 0,
AppBar(
backgroundColor: Colors.white,
scrolledUnderElevation: 0,
elevation: 0,
)