Junior — Middle
How many isolates are automatically created by the Flutter framework when it starts?
sobes.tech AI
Answer from AI
When launching Flutter, it automatically creates two isolates:
- Main Isolate — executes the main application code, including the UI.
- Platform Channel Isolate — handles interaction with native code (e.g., Android or iOS).
Isolates in Flutter are separate execution threads with their own memory, which allows for efficient parallelization of tasks and prevents blocking the UI.