mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
`handleEventLoopCallback()` should return `true` rather than `false` when there are tasks in the queue but the highest priority task is not run because of the `schedulingStrategy`. If `false` is returned when the queue still has tasks, the event loop stops, causing existing and new tasks to never be scheduled. For full context, see https://github.com/flutter/flutter/issues/73766#issuecomment-2202427256. Fixes #73766 and #82016.