15-Flutter移动电商实战-商品推荐区域制作

1、推荐商品类的编写

这个类接收一个List参数,就是推荐商品的列表,这个列表是可以左右滚动的。

/*商品推荐*/
class Recommend extends StatelessWidget {
  final List  recommendList;

  Recommend({Key key, this.recommendList}) : super(key: key);
}

2、推荐标题内部方法的编写

实际开发中,要尽量减少嵌套,我们需要把复杂的组件,单独拿出一个方法进行编写。这里就把商品推荐标题单独拿出一个方法进行编写。

/*推荐商品标题*/
Widget _titleWidget(){
 return Container(
   alignment: Alignment.centerLeft,
   padding: EdgeInsets.fromLTRB(10.02.00,5.0),
   decoration: BoxDecoration(
     color:Colors.white,
     border: Border(
       bottom: BorderSide(width:0.5,color:Colors.black12)
     )
   ),
   child:Text(
     '商品推荐',
     style:TextStyle(color:Colors.pink)
     )
 );
}

3、推荐商品单独项编写

把推荐商品的每一个子项我们也分离出来。每一个子项都使用InkWell,这样为以后的页面导航作准备。里边使用了Column,把内容分成三行。

先不充关于InkWel的使用

InkWell有的叫溅墨效果,有的叫水波纹效果。使用场景是给一些无点击事件的部件添加点击事件时使用(也支持长按、双击等事件),同时你也可以去修改它的颜色和形状。

InkWell(
  borderRadiusBorderRadius.circular(8.0), /*圆角*/
  splashColorColors.transparent/*溅墨色(波纹色)*/
  highlightColorColors.transparent/*点击时的背景色(高亮色)*/
  onTap: () {},/*点击事件*/
  childContainer(),
);

再回访推荐商品的编写

Widget _item(index){
    return InkWell(
      onTap: (){},
      child: Container(
        height: ScreenUtil().setHeight(330),
        width: ScreenUtil().setWidth(250),
        padding: EdgeInsets.all(8.0),
        decoration:BoxDecoration(
          color:Colors.white,
          border:Border(
            left: BorderSide(width:0.5,color:Colors.black12)
          )
        ),
        child: Column(
          children: <Widget>[
            Image.network(recommendList[index]['image']),
            Text('¥${recommendList[index]['mallPrice']}'),
            Text(
              '¥${recommendList[index]['price']}',
              style: TextStyle(
                decoration: TextDecoration.lineThrough,
                color:Colors.grey
              ),
            )
          ],
        ),
      ),
    );
}

4、横向列表组件的编写

横向列表组件也进行单独编写,以减少嵌套,这样我们就把每一个重要的部分都进行了分离。

Widget _recommedList(){

  return Container(
    height: ScreenUtil().setHeight(330),
    child: ListView.builder(
      scrollDirection: Axis.horizontal,
      itemCount: recommendList.length,
      itemBuilder: (context,index){
        return _item(index);
      },
    ),
  );
}

有了这三个基本组件,最后我们在build方法里进行组合,形成商品推荐区域。

@override
Widget build(BuildContext context
{
return Container(
   height: ScreenUtil().setHeight(380),
   margin: EdgeInsets.only(top: 10.0),
   child: Column(
     children: <Widget>[
       _titleWidget(),
       _recommedList()
     ],
   ),
);
}

5、整个组件的类代码如下

商品推荐
class Recommend extends StatelessWidget {
  final List  recommendList;

  Recommend({Key key, this.recommendList}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Container(
       height: ScreenUtil().setHeight(380),
       margin: EdgeInsets.only(top: 10.0),
       child: Column(
         children: <Widget>[
           _titleWidget(),
           _recommedList()
         ],
       ),
    );
  }

推荐商品标题
  Widget _titleWidget(){
     return Container(
       alignment: Alignment.centerLeft,
       padding: EdgeInsets.fromLTRB(10.0, 2.0, 0,5.0),
       decoration: BoxDecoration(
         color:Colors.white,
         border: Border(
           bottom: BorderSide(width:0.5,color:Colors.black12)
         )
       ),
       child:Text(
         '商品推荐',
         style:TextStyle(color:Colors.pink)
         )
     );
  }

  Widget _recommedList(){

      return Container(
        height: ScreenUtil().setHeight(330),
        child: ListView.builder(
          scrollDirection: Axis.horizontal,
          itemCount: recommendList.length,
          itemBuilder: (context,index){
            return _item(index);
          },
        ),
      );
  }

  Widget _item(index){
    return InkWell(
      onTap: (){},
      child: Container(
        height: ScreenUtil().setHeight(330),
        width: ScreenUtil().setWidth(250),
        padding: EdgeInsets.all(8.0),
        decoration:BoxDecoration(
          color:Colors.white,
          border:Border(
            left: BorderSide(width:0.5,color:Colors.black12)
          )
        ),
        child: Column(
          children: <Widget>[
            Image.network(recommendList[index]['image']),
            Text('¥${recommendList[index]['mallPrice']}'),
            Text(
              '¥${recommendList[index]['price']}',
              style: TextStyle(
                decoration: TextDecoration.lineThrough,
                color:Colors.grey
              ),
            )
          ],
        ),
      ),
    );
  }
}

6、准备数据并进行调用

在 HomePage build 中继续添加:

List<Map> recommendList = (data['data']['recommend'] as List).cast(); 
 Recommend(recommendList:recommendList),    

效果图:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/414348.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python无法导入Cython的.pyx文件

在import 相应包之前, 添加: import pyximport pyximport.install() 即可. 转载于:https://www.cnblogs.com/ZhengPeng7/p/8706657.html

gradle sync failed——Android studio 突然就无法自动下载gradle了

不知道按到了什么鬼&#xff0c;或者新安装了Android studio 无法使用 正常gradle文件位置是不需要修改的 android studio会自动配置 出现这个错误&#xff0c;就需要收到补全gradle文件路径配置即可 1、查看项目gradle版本 2、补全即可——加上后面这段对应项目里的版本的文件…

16-Flutter移动电商实战-切换后页面状态的保持AutomaticKeepAliveClientMixin

底栏切换每次都重新请求是一件非常恶心的事&#xff0c;flutter 中提供了AutomaticKeepAliveClientMixin 帮我们完成页面状态保存效果。 1、AutomaticKeepAliveClientMixin AutomaticKeepAliveClientMixin 这个 Mixin 是 Flutter 为了保持页面设置的。哪个页面需要保持页面状态…

js ejs for语句的第二种遍历用法

var A {a:1,b:2,c:3,d:"hello world"};for(var k in A) {console.log(k,A[k]);var h new EJS({element:ejs_render_id}).render(render);}return;转载于:https://www.cnblogs.com/pansidong/p/8708245.html

Android 串口开发——粘包解决方法,定时查询心跳数据,解析心跳数据。——持续更新中

粘包解决方法 方法1 getXOR——是校验方法 /*** 最小数据包的长度(除开数据的N个字节&#xff09;* 帧头 保留字节 协议控制字 地址字段 命令长度 命令码 命令数据 校验和* 2字节 3字节 1字节 2或8字节 2字节 2字节 0-1100字…

17-Flutter移动电商实战-首页_楼层区域的编写

1、楼层标题组件 该组件非常简单&#xff0c;只接收一个图片地址&#xff0c;然后显示即可&#xff1a; class FloorTitle extends StatelessWidget {final String picture_address;FloorTitle({this.picture_address});overrideWidget build(BuildContext context) {return …

webdriver高级应用- 无人工干预地自动下载某个文件

在网页上下载文件时&#xff0c;通常需要人为设定下载文件并选择保持路径&#xff0c;这样就无法实现完全自动的下载过程。下面实现基于firefox浏览器的全自动化文件下载操作&#xff1a; #encodingutf-8 from selenium import webdriver import unittest, timeclass TestDemo(…

Android 使用mqtt实例,包括接收服务器推送以及上传数据到服务器

1、最方便的方法&#xff0c;使用dlc的module连接mqtt 步骤、1——导入dlc依赖和module //dlc_mqttmodule implementation project(:garbagerecyclebox)//dlc公库 implementation(com.github.DlcAndroidTeam123456:DlcCommonLibrary:1.0.31-simple) {exclude group: me.yokeyw…

18-Flutter移动电商实战-首页_火爆专区商品接口制作

1、获取接口的方法 在service/service_method.dart里制作方法。我们先不接收参数&#xff0c;先把接口调通。 Future getHomePageBeloConten() async{try{print(开始获取下拉列表数据.................);Response response;Dio dio new Dio();dio.options.contentTypeConten…

IIS Server Farms入门

概念了解 IIS Server Farms&#xff0c;实际上应该叫“Microsoft Web Farm Framework (WFF)”&#xff0c;依赖于“Web Platform Installer”才能安装&#xff0c;依赖于WebDeploy组件。可参见 Web Farm Framework Setting up a Server Farm with the Web Farm Framework 2.0 f…

flutter中的异步机制Future

饿补一下Flutter中Http请求的异步操作。 Dart是一个单线程语言&#xff0c;可以理解成物理线路中的串联&#xff0c;当其遇到有延迟的运算&#xff08;比如IO操作、延时执行&#xff09;时&#xff0c;线程中按顺序执行的运算就会阻塞&#xff0c;用户就会感觉到卡顿&#xff0…

前端学习(2825):vs开发小程序的插件

推荐以下四个插件 wechat-snippet 微信小程序代码辅助,代码片段自动完成minapp 微信小程序标签、属性的智能补全&#xff08;同时支持原生小程序、mpvue 和 wepy 框架&#xff0c;并提供 snippets&#xff09; 需要输入<才会触发标签补全 输入空格会触发对应标签的属性补全…

软件工程导论团队项目

软件工程导论团队项目&#xff08;速课小龙&#xff09; 一&#xff0e;团队介绍 1.团队成员 邓 旭 2016012068 &#xff08;组长&#xff09; 陈逸璇 2016012056 周紫伊 2016012043 谢月鹏 2016012066 洪泽芳 2016011988 葛金星 2016011992 2.队名&#xff1a;速课小龙 3.项…

java.util.ConcurrentModificationException

Android使用ArrayLists时报错&#xff1a;java.util.ConcurrentModificationException 报错原因是同一个集合被多个线程编辑了。导致集合元素丢失 解决方法—— 1、改有CopyOnWriteArrayList private List<MqttMsgBean> mqttMsgList new CopyOnWriteArrayList<>…

工作272:上传部分代码优化之两种上传视频的方式

两种预览视频的方式 <!--<div style"width: 500px;height: 400px" align"center"><iframe height498 width510 srchttp://xcom/uploads/2020-12-23/20201223125205_636.mp4 frameborder0 allowfullscreen></iframe></div>-->…

面试必备:HashMap、Hashtable、ConcurrentHashMap的原理与区别

本文转载自 夏雪冬日&#xff1a;https://www.cnblogs.com/heyonggang/p/9112731.html 在实际面试过程中出现集合 Map 的概率接近 100%&#xff0c;可见不背上个 Map 相关的题目都不好意思去面试了。 如果你去面试&#xff0c;面试官不问你这个问题&#xff0c;你来找我^_^ 下…

tomcat,eclipse,sts绿色运行

D:\apache-tomcat-8.5.29\bin\setclasspath.bat 最开始处设置&#xff0c;可以是相对路径 set JAVA_HOMED:\Program Files\jdk1.8.0_131set JRE_HOMED:\Program Files\jdk1.8.0_131\jre 类eclipse配置文件 sts.ini -startup plugins/org.eclipse.equinox.launcher_1.4.0.v20161…