You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you manually register a FlutterEngine with a scene, you must also unregister it if the view created by the FlutterEngine changes scenes.
// If using FlutterSceneDelegate:
self.unregisterSceneLifeCycle(with: flutterEngine)
// If using FlutterSceneLifeCycleProvider:
sceneLifeCycleDelegate.unregisterSceneLifeCycle(with: flutterEngine)
Issues:
It's unclear where to call unregister in the doc (so we should polish the doc)
This API can be error prone - developers could easily forget to call register/unregister (especially unregister).
From our migration guide: https://docs.flutter.dev/release/breaking-changes/uiscenedelegate#if-your-app-supports-multiple-scenes
Issues: