- What's the difference between CSS styles and styles used with React Native components?
- React Native shares many style properties with CSS. Style properties are expressed as plain object properties in React Native
- Why do you need to consider the status bar when designing your layout?
- Because the status bar can interfere with your components on iOS
- What is the flexbox model?
- The flexbox layout model is used to lay out components in a way that abstracts away many small details and automatically flexes in response to layout changes
- Is screen orientation a factor when considering your layout options?
- Yes, you always need to make sure there are no surprises in portrait or landscape orientation during development