在Ios 中 列表滚动条向下滚动一段距离后 会导致 AppBar 颜色改变
可以给 AppBar 或者 AppBarTheme。 scrolledUnderElevation: 0.0 属性
全局:
MaterialApp(
theme: ThemeData(
appBarTheme: AppBarTheme(scrolledUnderElevation: 0.0)
)
)
局部:
AppBar(
scrolledUnderElevation: 0.0
)
效果:
滚动前 | 滚动后 |
x文章来源:https://www.toymoban.com/news/detail-854379.html
ke z文章来源地址https://www.toymoban.com/news/detail-854379.html
到了这里,关于Flutter ios 使用ListView 。滚动时 AppBar 改变颜色问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!