Push notifications ایپس کو صارفین کو مطلع کرنے دیتی ہیں یہاں تک کہ جب ایپ کھلی نہ ہو — پیغامات، اپڈیٹس، اور صارف کی شمولیت کے لیے۔ React Native میں، یہ platform services (iOS کے لیے APNs، Android کے لیے FCM)، permissions، device tokens، اور notification events کو سنبھالنے میں شامل ہیں۔
Push notifications کیسے کام کرتی ہیں (بہاؤ)
1. The app requests notification PERMISSION from the user (especially iOS — opt-in)
2. The device registers and gets a unique push TOKEN (identifies this device/app install)
3. The app sends the token to YOUR SERVER (stores it to target this device)
4. Your server sends a notification → via the platform service:
APNs (Apple Push Notification service) for iOS, FCM (Firebase Cloud Messaging) for Android
5. The platform delivers it to the device → the app shows/handles it
→ Notifications work even when the app is closed (the OS handles delivery).
