You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new Swiper(
itemBuilder: (BuildContext context, int index) {
return Image.network("http://via.placeholder.com/350x220");
},
itemCount: 5,
itemWidth: 300.0,
itemHeight: 220.0,
layout: SwiperLayout.STACK,
outer: true,
pagination: new SwiperPagination(
alignment: Alignment.topCenter,
),
),
if I didn't set outer = true, the alignment in pagination would always work; but as long as I set outer = true, the indicators would not be on the topCenter of the swiper any more.
Any suggestions?
The text was updated successfully, but these errors were encountered:
if I didn't set outer = true, the alignment in pagination would always work; but as long as I set outer = true, the indicators would not be on the topCenter of the swiper any more.
Any suggestions?
The text was updated successfully, but these errors were encountered: