在Flutter中删除to栏视图的蓝色/灰色滚动动画,可以通过修改ScrollView的属性来实现。
AppBar(
backgroundColor: Colors.transparent,
// 其他属性
)
AppBar(
elevation: 0,
// 其他属性
)
CustomScrollView(
physics: NeverScrollableScrollPhysics(),
// 其他属性
)
通过以上步骤,你可以在Flutter中删除to栏视图的蓝色/灰色滚动动画。请注意,以上只是一种实现方式,根据具体需求可能会有其他方法。
领取专属 10元无门槛券
手把手带您无忧上云