Commit f12b10e0 authored by yogevbd's avatar yogevbd

Fix platforms logo

parent d94ebbb8
...@@ -4,7 +4,7 @@ title: Local Notifications ...@@ -4,7 +4,7 @@ title: Local Notifications
sidebar_label: Local Notifications sidebar_label: Local Notifications
--- ---
## <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/2000px-Apple_logo_black.svg.png" width=30/> iOS <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/2000px-Apple_logo_black.svg.png" width=30/> iOS
You can manually trigger local notifications in your JS code, to be posted immediately or in the future. You can manually trigger local notifications in your JS code, to be posted immediately or in the future.
Triggering local notifications is fully compatible with React Native `PushNotificationsIOS` library. Triggering local notifications is fully compatible with React Native `PushNotificationsIOS` library.
...@@ -72,7 +72,7 @@ Call `removeAllDeliveredNotifications()` to dismiss all delivered notifications ...@@ -72,7 +72,7 @@ Call `removeAllDeliveredNotifications()` to dismiss all delivered notifications
notifications). notifications).
## <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/APK_format_icon.png/768px-APK_format_icon.png" width=30/> Android <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/APK_format_icon.png/768px-APK_format_icon.png" width=30/> Android
Much like on iOS, notifications can be triggered locally. The API to do so is a simplified version of the iOS equivalent that works more natually with the Android perception of push (remote) notifications: Much like on iOS, notifications can be triggered locally. The API to do so is a simplified version of the iOS equivalent that works more natually with the Android perception of push (remote) notifications:
......
...@@ -4,8 +4,6 @@ title: Handling Notification Events ...@@ -4,8 +4,6 @@ title: Handling Notification Events
sidebar_label: Events sidebar_label: Events
--- ---
## <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/2000px-Apple_logo_black.svg.png" width=30/> iOS
When a push notification is received by the device, the application can be in one of the following states: When a push notification is received by the device, the application can be in one of the following states:
1. **Forground:** When the app is running and is used by the user right now; in this case, a `notificationReceived` event will be fired, do not forget to invoke `completion()` callback. 1. **Forground:** When the app is running and is used by the user right now; in this case, a `notificationReceived` event will be fired, do not forget to invoke `completion()` callback.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment