HarmonyOS 鸿蒙Next Column里面放Text Text两边为什么会有一点点间隙
HarmonyOS 鸿蒙Next Column里面放Text Text两边为什么会有一点点间隙
鸿蒙 Column里面放Text Text两边为什么会有一点点间隙,要怎么解决
import { CommonTitleBar } from ‘…/…/…/custom/CommonTitleBar’
import router from ‘@ohos.router’
@Entry
@Component
struct LoginDeviceIndex {
build() {
Column() {
CommonTitleBar({
attribute: {
title_text: ‘登录设备’,
close_text: ‘’,
rightText: ‘登录记录’,
isVisibleRightText: true,
rightTextFontColor: ‘#0286DF’,
closeCallback: () => {
router.back()
},
rightTextClick: () => {
},
bg_color: ‘#ffffff’
}
}).height(44)
Text(‘以下为当前时间段登录本账号的设备。点击“退出登录”可将账号从该设备退出。’)
.fontSize(14)
.fontColor(’#999999’)
.backgroundColor(Color.Red)
}.width(‘100%’).height(‘100%’).backgroundColor(’#f5f5f5’)
}
}
更多关于HarmonyOS 鸿蒙Next Column里面放Text Text两边为什么会有一点点间隙的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
1 回复