陈剑华

feat: 查看更多相似组件ui

... ... @@ -64,6 +64,7 @@ export const enum CompStyle {
Card_21 = '21', // 小视频卡人民号
Card_22 = '22', // 时间链
Card_23 = '23', // 问政卡
More_Comp= 'More_Comp', // 点击查看更多相似
... ...
/**
* More_Comp
*/
const TAG: string = 'Card9Component';
@Entry
@Component
export struct MoreComponent {
build() {
Row() {
Text('点击展开更多相似')
.fontSize(16)
Image($r('app.media.comment_unfold'))
.width(16)
.height(16)
}
.justifyContent(FlexAlign.Center)
.width('100%')
.height(48)
.backgroundColor(0xffffff)
}
}
\ No newline at end of file
... ...