HarmonyOS 鸿蒙Next popup自定义
HarmonyOS 鸿蒙Next popup自定义
为什么无法 100%宽度,一设置满屏幕 就会出问题
.bindPopup(this.venuePopup, {
builder: this.venuePopupBuilder, // 气泡的内容
placement: Placement.Bottom, // 气泡的弹出位置
popupColor: Color.White, // 气泡的背景色
enableArrow: false,
mask:false,
radius: 1,
shadow: ShadowStyle.OUTER_FLOATING_SM,
backgroundBlurStyle: BlurStyle.NONE,
width: px2vp(SWindowUtils.windowWidth)-20,
onStateChange: (e) => {
if (!e.isVisible) {
this.venuePopup = false
}
}
})
更多关于HarmonyOS 鸿蒙Next popup自定义的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
2 回复
如果想要汽泡设置为100%完整展示,可以设置为placement: Placement.BottomLeft
具体文档可参考:
https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-universal-attributes-popup
更多关于HarmonyOS 鸿蒙Next popup自定义的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html