May 2018
Intermediate to advanced
470 pages
13h 54m
English
The View component is the most fundamental component for building a user interface in React Native, and it maps directly to the native view equivalent on whatever platform React Native is running on. In our case, it will be <div> on the browser:
<View> <Text>Hello</Text></View>
The View component is typically used as a container for other components, it can be nested inside other views and can have zero to many children of any type.
We will use View components to hold the game world view, and to add 3D object entities and text to the game.
Read now
Unlock full access