position

Positions the center of the view at the given x and y coordinates within its parent’s coordinate space.

Type

position?: { x: number, y: number }

Example

<Text
  position={{ 
    x: 100,
    y: 200 
  }}
>Positioned Text</Text>