有时候可能我们不需要显示滚动条,比如封装自动上下滚动等效果时。可以通过以下方式影藏滚动条
ScrollConfiguration(
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
child: ...,
),
有时候可能我们不需要显示滚动条,比如封装自动上下滚动等效果时。可以通过以下方式影藏滚动条
ScrollConfiguration(
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
child: ...,
),
评论区