- What's the difference between an alert and a modal?
- Alerts are good at inheriting the look and feel of the mobile environment whereas modals are regular React Native views that you have total stylistic control over.
- Which React Native component can be used to create a modal view that overlays other components on the screen?
- The Modal component.
- What's the best way to display passive notifications on Android systems?
- You can use the ToastAndroid React Native API. There's no good alternative on iOS that doesn't involve rolling your own code.
- The React Native Alert API is only available on iOS.
- False