跳至主要内容

视图样式属性

示例

参考

属性

backfaceVisibility

类型
枚举('visible', 'hidden')

backgroundColor

类型
颜色

borderBottomColor

类型
颜色

borderBottomEndRadius

类型
数字

borderBottomLeftRadius

类型
数字

borderBottomRightRadius

类型
数字

borderBottomStartRadius

类型
数字

borderStartEndRadius

类型
数字

borderStartStartRadius

类型
数字

borderEndEndRadius

类型
数字

borderEndStartRadius

类型
数字

borderBottomWidth

类型
数字

borderColor

类型
颜色

边框曲线
iOS

在 iOS 13+ 上,可以更改边框的角曲线。

类型
枚举('circular', 'continuous')

borderEndColor

类型
颜色

borderLeftColor

类型
颜色

borderLeftWidth

类型
数字

borderRadius

如果圆角边框不可见,请尝试也应用 overflow: 'hidden'

类型
数字

borderRightColor

类型
颜色

borderRightWidth

类型
数字

borderStartColor

类型
颜色

borderStyle

类型
枚举('solid', 'dotted', 'dashed')

borderTopColor

类型
颜色

borderTopEndRadius

类型
数字

borderTopLeftRadius

类型
数字

borderTopRightRadius

类型
数字

borderTopStartRadius

类型
数字

borderTopWidth

类型
数字

borderWidth

类型
数字

光标
iOS

在 iOS 17+ 上,设置为 pointer 允许在指针(例如 iOS 上的触控板或触控笔,或 visionOS 上用户的注视)悬停在视图上时出现悬停效果。

类型
枚举('auto', 'pointer')

海拔高度
Android

使用 Android 的底层 elevation API 设置视图的海拔高度。这会在项目上添加一个投影,并影响重叠视图的 z 顺序。仅在 Android 5.0+ 上受支持,在早期版本上无效。

类型
数字

opacity

类型
数字

pointerEvents

控制 View 是否可以成为触摸事件的目标。

  • 'auto':View 可以成为触摸事件的目标。
  • 'none':View 从不成为触摸事件的目标。
  • 'box-none':View 从不成为触摸事件的目标,但其子视图可以。
  • 'box-only':View 可以成为触摸事件的目标,但其子视图不能。
类型
枚举('auto', 'box-none', 'box-only', 'none' )