网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

flutter中怎么实现一个轮播图效果

这篇文章给大家介绍flutter中怎么实现一个轮播图效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

我们提供的服务有:成都做网站、网站建设、微信公众号开发、网站优化、网站认证、宁阳ssl等。为成百上千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的宁阳网站制作公司

1 添加依赖库

flutter_swiper: ^1.0.6

2 普通常用 圆点指示器自动轮播图

class SwiperViewDefaultPage extends StatefulWidget { @override State createState() {  return new SwiperViewDefaultPageState(); }}class SwiperViewDefaultPageState  extends BaseAppBarPageState { @override String buildInitState() {  buildBackBar("轮播图", backIcon: Icons.arrow_back_ios);  return null; } @override Widget buildWidget(BuildContext context) {  print("build --");  return new Column(   children: [    Padding(     padding: EdgeInsets.all(10),    ),    buildStyle1(),   ],  ); } // 分页指示器 buildSwiperPagination() {  return SwiperPagination(   //指示器显示的位置   alignment: Alignment.bottomCenter, // 位置 Alignment.bottomCenter 底部中间   // 距离调整   margin: const EdgeInsets.fromLTRB(0, 0, 0, 5),   // 指示器构建   builder: DotSwiperPaginationBuilder(     // 点之间的间隔     space: 2,     // 没选中时的大小     size: 6,     // 选中时的大小     activeSize: 12,     // 没选中时的颜色     color: Colors.black54,     //选中时的颜色     activeColor: Colors.white),  ); } //banner 图 Widget buildStyle1() {  return Container(   height: 200.0,   child: new Swiper(    // 横向    scrollDirection: Axis.horizontal,    // 布局构建    itemBuilder: (BuildContext context, int index) {     return new Image.network(      "http://hbimg.b0.upaiyun.com/a3e592c653ea46adfe1809e35cd7bc58508a6cb94307-aaO54C_fw658",      fit: BoxFit.fill,     );    },    //条目个数    itemCount: 6,    // 自动翻页    autoplay: true,    // 分页指示    pagination: buildPlugin(),    //点击事件    onTap: (index) {     print(" 点击 " + index.toString());    },    // 相邻子条目视窗比例    viewportFraction: 1,    // 布局方式    //layout: SwiperLayout.STACK,    // 用户进行操作时停止自动翻页    autoplayDisableOnInteraction: true,    // 无线轮播    loop: true,    //当前条目的缩放比例    scale: 1,   ),  ); } buildPlugin() {  return SwiperPagination(); }}

3 自定圆点分页指示器 效果

//自定圆点分页指示器 buildSwiperPagination() {  // 分页指示器  return SwiperPagination(   //指示器显示的位置   alignment: Alignment.bottomCenter, // 位置 Alignment.bottomCenter 底部中间   // 距离调整   margin: const EdgeInsets.fromLTRB(0, 0, 0, 5),   // 指示器构建   builder: DotSwiperPaginationBuilder(     // 点之间的间隔     space: 2,     // 没选中时的大小     size: 6,     // 选中时的大小     activeSize: 12,     // 没选中时的颜色     color: Colors.black54,     //选中时的颜色     activeColor: Colors.white),  ); } //定义轮播图组件 Widget buildStyle1() {  return Container(   height: 200.0,   child: new Swiper(    // 横向    scrollDirection: Axis.horizontal,    // 布局构建    itemBuilder: (BuildContext context, int index) {     return new Image.network(      "http://hbimg.b0.upaiyun.com/a3e592c653ea46adfe1809e35cd7bc58508a6cb94307-aaO54C_fw658",      fit: BoxFit.fill,     );    },    //条目个数    itemCount: 6,    // 自动翻页    autoplay: true,    // 分页指示    pagination: buildSwiperPagination(),    //点击事件    onTap: (index) {     print(" 点击 " + index.toString());    },    // 视窗比例    viewportFraction: 1,    // 布局方式    //layout: SwiperLayout.STACK,    // 用户进行操作时停止自动翻页    autoplayDisableOnInteraction: true,    // 无线轮播    loop: true,    scale: 1,   ),  ); }

4 自定数字 分页指示器 效果

//自定义分页指示器 buildSwiperPagination() {  // 分页指示器  return SwiperPagination(   //指示器显示的位置   alignment: Alignment.bottomCenter, // 位置 Alignment.bottomCenter 底部中间   // 距离调整   margin: const EdgeInsets.fromLTRB(0, 0, 0, 5),   // 指示器构建   builder: FractionPaginationBuilder(     // 选中时字体大小     activeFontSize: 14,     // 字体大小     fontSize: 14,      // 字体颜色     color: Colors.red,     //选中时的颜色     activeColor: Colors.blue),  ); }

关于flutter中怎么实现一个轮播图效果就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


分享题目:flutter中怎么实现一个轮播图效果
链接地址:http://bjjierui.cn/article/ppggih.html

其他资讯