- What's the difference between an alert and a modal?
- Alerts are used for unimportant information, whereas modals are used for less important information.
- They serve the same purpose and it doesn't matter which one you use.
- 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?
- There is no way to do this.
- The Modal component.
- The Modal.open() function is used for this.
- What's the best way to display passive notifications on Android systems?
- React Native has a notification API for this purpose.
- You can use the ToastAndroid React Native API. There's no good alternative on iOS that doesn't involve rolling your own code.
- React Native only supports passive notifications on iOS.
- The React Native Alert API is only available on iOS.
- True
- False