輕松處理ListView上滑 AppBar 變色的問題。
- 方法一:使用的是Material 3谎倔,可以給surfaceTintColor設(shè)置顏色氓英,同backgroundColor一個(gè)顏色。
AppBar(
backgroundColor: backgroundColor,
surfaceTintColor: backgroundColor, //添加這行
)
- 方法二:scrolledUnderElevation: 0, elevation: 0,
AppBar(
backgroundColor: Colors.white,
scrolledUnderElevation: 0,
elevation: 0,
)