79589976

Date: 2025-04-24 06:52:34
Score: 0.5
Natty:
Report link

First of all, you need to understand why Isolates are used in Flutter. There are multiple purposes.

Why Isolates are Used in Flutter

Preventing UI Freezes:

Limitations of Isolates

However,There are also isolates limtations

- Communication Overhead: Passing data to isolates serialization/deserialization
- No Direct UI Access: Isolates can't directly update the UI
- App Termination: Isolates don't live/survive on application termination.
----------------------------------

Remote push notifications
Still If you would like to use push notifications in a way even when your app is terminated or killed, you can handle push notification logic on the server side. With server-side push notifications, both Android and iOS platforms will work perfectly. so push notification will not be depend on isolate.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): ----------------------------------
  • Low reputation (0.5):
Posted by: karamat subhani