Skip to main content

View

The most fundamental building block. Accepts layout / view style props via Style.s, accessibility props, gesture responder handlers, and W3C pointer events (onPointerDown, …).

open ReactNative
open Style

<View
style={s({flex: 1., padding: 16.->dp, backgroundColor: "white"})}
onPointerDown={_ => Console.log("pointer down")}>
<Text> {"Hello"->React.string} </Text>
</View>