Without nesting, every element on the screen would compete for the same layout space along a single axis. Nesting allows developers to mix layout axes. For example, you can create a primary vertical column (parent) that contains multiple horizontal rows (nested children). Core Layout Properties to Remember
export default class App extends Component render() return ( <View style=styles.container> <Text>Welcome to 2.3.9 Nested Views</Text> <View style=styles.outerBox> <Text style=styles.textStyle>Outer View</Text> <View style=styles.innerBox> <Text>Inner View 1</Text> </View> <View style=styles.innerBox> <Text>Inner View 2</Text> </View> </View> </View> ); 2.3.9 nested views codehs
: The outermost container that holds all other elements. It usually requires to fill the entire screen. Child Views Without nesting, every element on the screen would