Module: CardBase

基础卡片

Properties:
Name Type Description
innerView component

卡片内部 View, 不传该参数将显示默认的 icon + text

icon int

左侧图标的资源 id, 参照Imageresource属性, 不传将不显示图标

text string

右侧文案

visible bool

是否显示卡片, 默认值 true

showDismiss bool

是否显示右上角的关闭按钮, 默认值 false

disabled bool

是否禁用卡片点击, 默认值 false

dismiss function

点右上角关闭按钮的回调函数

onPress function

点击事件, 不传该参数将显示禁用态

cardStyle style

卡片容器的自定义样式, 默认样式 { width: screenWidth - 30, height:66 }

iconStyle style

左侧图标的自定义样式

textStyle style

右侧文案的自定义样式

underlayColor string

卡片点击态颜色,默认 rgba(0,0,0,0.05)

Since:
  • 10010
Author:
  • Geeook

Methods

getCorrectStyle()

筛选出cardStyle中的大小定位信息

renderClose()

渲染右上角的关闭按钮, 默认不显示

renderInner()

渲染卡片内部View。默认显示 icon + text