2.3.9 Nested Views Codehs [hot] -

Are you having trouble with a or a layout alignment issue in this exercise?

// Example from 2.3.9 Nested Views export default function App() return ( // Parent View (Outer Container) <View style=styles.outerContainer> /* Child View 1: Header */ <View style=styles.header> <Text>Welcome to My App</Text> </View> 2.3.9 nested views codehs

// Add the nested view to the main view mainView.add(nestedView); Are you having trouble with a or a

: Each View must have a different size and a different color . Welcome to My App&lt

Every nested structure consists of a (the outer container) and one or more Child Views (the inner components).