-
Notifications
You must be signed in to change notification settings - Fork 734
Closed
Description
class _ClassifyPage extends State {
@OverRide
Widget build(BuildContext context) {
return new Container(
width: MediaQuery
.of(context)
.size
.width,
height: 200.0,
child: new Swiper(
itemBuilder: _swiperBuilder,
itemCount: 2,
pagination: new SwiperPagination(
builder: DotSwiperPaginationBuilder(
color: Colors.white,
activeColor: Colors.red
),
margin: EdgeInsets.all(30.0)
),
control: new SwiperControl(
iconNext: null,
iconPrevious: null,
),
scrollDirection: Axis.horizontal,
autoplay: true,
onTap: (index) => print('点击了第个')
),
);
}
能帮我解答下么?
Metadata
Metadata
Assignees
Labels
No labels