如何在 Flutter 中更改 Swiper 分页颜色?
How to Change Swiper pagination color in Flutter?
我在 Flutter 中将 Swiper 用作滑块 Activity 我想将 Swiper 点指示器颜色从蓝色(默认)更改为自定义,但我无法找到如何更改指示器颜色的方法以及我想更改容器内指示器的位置。
我通过在 Swiper 小部件中添加以下代码找到了此问题的解决方案。
pagination: new SwiperPagination(
alignment: Alignment.bottomCenter,
builder: new DotSwiperPaginationBuilder(
color: Colors.grey, activeColor: Color(0xff38547C)),
),
control: new SwiperControl(
color: Color(0xff38547C),
),
添加此代码后,输出如下所示:
我在 Flutter 中将 Swiper 用作滑块 Activity 我想将 Swiper 点指示器颜色从蓝色(默认)更改为自定义,但我无法找到如何更改指示器颜色的方法以及我想更改容器内指示器的位置。
我通过在 Swiper 小部件中添加以下代码找到了此问题的解决方案。
pagination: new SwiperPagination(
alignment: Alignment.bottomCenter,
builder: new DotSwiperPaginationBuilder(
color: Colors.grey, activeColor: Color(0xff38547C)),
),
control: new SwiperControl(
color: Color(0xff38547C),
),
添加此代码后,输出如下所示: