当前位置: 首页 > news >正文

建设农村信息网站wordpress用户添加资源

建设农村信息网站,wordpress用户添加资源,深圳网页设计,建设银行荆门招聘网站先看效果 一开始 用的PageView 做的, 然后重写PageScrollPhysics一顿魔改, 最后发现还是有一些小bug。 后面又想到pageview 能做,listview肯定也能做,最后用ListView加GridView 把功能实现了。 listview 实现pageview 的分页滑动…

先看效果
淘宝效果
模仿效果
一开始 用的PageView 做的, 然后重写PageScrollPhysics一顿魔改, 最后发现还是有一些小bug。 后面又想到pageview 能做,listview肯定也能做,最后用ListView加GridView 把功能实现了。
listview 实现pageview 的分页滑动效果只需要给ListView设置 physics: const PageScrollPhysics()。
做一个功能最重要的是拆分。
1:第一页最多展示5个半,(其实那半个是第二页的一部分)第二页后最多展示 15个
2:高度随着滑动动态变化
高度变化很简单只要最外层的widget 高度是动态的就行

Container(height: state.height, // 动态变化decoration: const BoxDecoration(color: Colors.white,// borderRadius://     BorderRadius.only(bottomLeft: Radius.circular(8), bottomRight: Radius.circular(8)),),child: _buildSubcategory(context),)

_buildSubcategory 这里主要有一些数学计算,因为数据多少是不确定的,第一页只显示五个,默认第二页最多显示15个,后面第三页等等都是默认最多显示15个,当然子分类可能没那么多,基本就两页,但是公式可以通用,想分几页就几页,能支持就支持呗。

 /// 构建子分类Widget _buildSubcategory(BuildContext context) => Stack(children: <Widget>[SizedBox(width: ScreenUtil.width,child:  ListView.builder(key: ValueKey("ListView$id"),addAutomaticKeepAlives: true,padding: EdgeInsets.zero,scrollDirection: Axis.horizontal,physics:  const PageScrollPhysics(),// physics: const NoInertiaScrollPhysics(),itemCount: state.listSubcategoryEntity.length < 6? 1: ((state.listSubcategoryEntity.length - 5) / 15).ceil() + 1,controller: controller.scrollController,itemBuilder: (context, index) {List<SubcategoryEntity> list = [];if (index == 0) {if(state.listSubcategoryEntity.length>5){list.addAll(state.listSubcategoryEntity.sublist(0, 5));}else{list.addAll(state.listSubcategoryEntity);}} else {list.addAll(state.listSubcategoryEntity.sublist(5 + (index - 1) * 15,state.listSubcategoryEntity.length > (5 + index * 15)? 5 + index * 15: state.listSubcategoryEntity.length));}return _buildSubcategoryWidget(context, index, list);},),),Align(alignment: Alignment.bottomCenter,child: widgetBuilder(id: DemandListPageWidgetId.subcategoryIndicator,builder: () => _buildSubcategoryIndicatorWidget(state.listSubcategoryEntity.length < 6? 1: ((state.listSubcategoryEntity.length - 5) / 15).ceil() +1,state.index),),)],);

至于第一页怎么漏出第二页的数据,很简单 把第一页的width宽度设置小一点就能漏出第二页。
为什么是ScreenUtil.width-40?你想减多少都可以。。。我只是觉得减40漏出的部分更好看一些。

 _buildSubcategoryWidget(BuildContext context, int indexs, List<SubcategoryEntity> list) {return SizedBox(width:  state.listSubcategoryEntity.length >5&&indexs==0?ScreenUtil.width-40:ScreenUtil.width,child: GridView.builder(key: ValueKey("GridView$id"),physics: const NeverScrollableScrollPhysics(),shrinkWrap: true,padding:state.listSubcategoryEntity.length >5&&indexs==0?const EdgeInsets.only(left: 10 , top: 8):const EdgeInsets.only(left: 0, top: 8),gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 5,// crossAxisSpacing: 5,childAspectRatio:1.1,// mainAxisSpacing: 2),itemBuilder: (BuildContext context, int index) {return Ripple(onTap: () {controller.push(url: list[index].jumpUrl ?? "");},child: Column(mainAxisSize: MainAxisSize.min,children: [ImageBuild.network(list[index].image?.small ?? '',fit: BoxFit.fill,size: const Size(35, 35),placeholder: AppImage.commonPlaceholderIconSmall),const SizedBox(height: 2.0,),TextBuild.text(list[index].title?.content ?? "",style: AppTextStyleData( fontWeight: AppTextStyle.regular,fontSize: 14,color: AppColorData.hex(list[index].title?.fontColor ?? "#1E1E1E"),),textAlign: TextAlign.center,),],));},itemCount: indexs == 0? (state.listSubcategoryEntity.length < 5? state.listSubcategoryEntity.length: 5): (state.listSubcategoryEntity.length > 5 + indexs * 15? 15: (state.listSubcategoryEntity.length - (5 + (indexs - 1) * 15))),),);}

主要是监听滑动事件,然后动态改变高度

NotificationListener<ScrollNotification>(onNotification: (ScrollNotification sn) {if (sn.metrics.axis == Axis.horizontal) {if (sn is ScrollEndNotification) {// var currentPage = (math.max(0.0, clampDouble(sn.metrics.pixels, sn.metrics.minScrollExtent, sn.metrics.maxScrollExtent)) ///     math.max(1.0, ScreenUtil.width)).round();// state.index = currentPage;// controller.widgetRebuild(DemandListPageWidgetId.subcategoryIndicator);} else {double progress = sn.metrics.pixels;if (0 < progress && progress <= ScreenUtil.width) {var multiple = state.listSubcategoryEntity.length>15 ? 1:0;if(state.listSubcategoryEntity.length<11){state.height = 80;}else{state.height =  progress/ScreenUtil.width * ((multiple+1)*78)+80;}} else if (progress == 0) {state.height = 80;}var currentPage = (math.max(0.0, clampDouble(sn.metrics.pixels, sn.metrics.minScrollExtent, sn.metrics.maxScrollExtent)) /math.max(1.0, ScreenUtil.width)).round();state.index = currentPage; // 记录当前页数controller.widgetRebuild(DemandListPageWidgetId.subcategory); //刷新页面,自行替换}}return false;},child:    child );
http://www.yayakq.cn/news/476101/

相关文章:

  • 牟平建设局网站上海移动端网络推广哪家强
  • 宁波哪家公司做网站好开什么网站暴利
  • 网站建设aichengkeji电子商务网站 功能
  • 如何做内网网站万网查询
  • 安防 光速东莞网站建设建设银行山东 2015招聘网站
  • wordpress 返回百度seo快排软件
  • onethink做移动网站ios开发者账号多少钱
  • 研究院网站模板徐州网站平台制作公司
  • 源码网站大淘客cms网站开发的技术路线
  • 做网站横幅的图片多大app界面设计模板图片
  • 徐州网站制作机构中铁建设集团有限公司西北分公司
  • 创建网站公司好网页美工实训结论与心得体会
  • 上海好的网站设计公司网站未建设的情况说明
  • wordpress站长邮箱产品如何做市场推广
  • 制作企业网站是免费的吗常用的建站软件有哪些
  • 邢台移动网站建设公司wordpress 默认图片
  • 舟山网站建设开发网站建设和维护费怎么摊销
  • 实名网站空间哪里买解聘 人力资源网站上怎么做
  • 宿迁网站建设哪家专业学做吃的网站有哪些
  • 用树莓派做网站服务器自做网站域名重定向
  • 网站建设收益分析建设微信商城网站制作
  • 做生意在哪个网站做wordpress替换js为外部引用
  • 甘肃网络公司网站建设关键词推广方法
  • 平邑做网站的windows server 2003 wordpress
  • 嘉兴专业自助建站免费咨询南通公司快速建站
  • php简单购物网站源码网站备案
  • 教程seo推广排名网站微信小程序官网登陆
  • 旅游网站设计asp百度云平台建设网站
  • 苏州企业网站设计方案win淘宝客wordpress主题模板
  • 建设银行互联网网站官网steam