鸿蒙作业HealthApp第四期

饮食记录UI设计-记录列表



前言

本期主要实现记录列表的实现。


一、预计要实现的效果如下:

在这里插入图片描述

二、创建RecordList.ets文件

2.1分组的标题

如图所示:
在这里插入图片描述

2.2组内记录列表

如图所示:
在这里插入图片描述

2.3滑动删除组件的建立

如图所示:
在这里插入图片描述

三、RecordList.ets源代码如下:

import { CommonConstants } from '../../common/constants/CommonConstants'
@Extend (Text) function grayText(){
  .fontSize(14)
  .fontColor($r('app.color.light_gray'))
}
@Component
export default struct RecordList{
  build(){
    List({space:CommonConstants.SPACE_10}){
      ForEach([1,2,3,4,5],(item)=>{
        ListItem(){
          Column(){
            //1、分组的标题
            Row(){
              Image($r('app.media.ic_breakfast')).width(24)
              Text('早餐').fontSize(18).fontWeight(CommonConstants.FONT_WEIGHT_700)
              Text('建议423-592千卡').grayText()
              Blank()
              Text('190').fontSize(14).fontColor($r('app.color.primary_color'))
              Text('千卡').grayText()
              Image($r('app.media.ic_public_add_norm_filled'))
                .width(24)
                .fillColor($r('app.color.primary_color'))
            }
            .width('100%')

            //2、组内记录列表
            List(){
              ForEach([1,2],(item)=>{
                ListItem(){
                  Row({space:CommonConstants.SPACE_6}){
                    Image($r('app.media.toast')).width(50)
                    Column(){
                      Text('全麦吐司').fontWeight(CommonConstants.FONT_WEIGHT_500)
                      Text('1片').grayText()
                    }
                    Blank()
                    Text('91千卡').grayText()

                  }
                  .width('100%')
                  .padding(CommonConstants.SPACE_6)
                }.swipeAction({end:this.deleteButton.bind(this)})
              })
            }
            .width('100%')
          }
          .width('100%')
          .backgroundColor(Color.White)
          .borderRadius(CommonConstants.DEFAULT_8)
          .padding(CommonConstants.SPACE_12)
        }
      })
    }
   .width(CommonConstants.THOUSANDTH_940)
    .height('100%')
    .margin({top:10})
  }
  @Builder deleteButton(){
    Image($r('app.media.ic_public_delete_filled'))
      .width(20)
      .fillColor(Color.Red)
      .margin(5)
  }
}

总结

使用 List 组件展示一个记录列表,其中每个记录由 ListItem 组件表示。每个 ListItem 包含了两部分:

  • 分组标题:
    包括图像、文本描述和建议的卡路里摄入量。
  • 组内记录列表:
    使用嵌套的 List 和 ListItem 组件展示具体的记录。
    每条记录包括图像、食物名称、数量描述和卡路里数。
  • 5
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值