-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listteam-iosOwned by iOS platform teamOwned by iOS platform teamtoolAffects the "flutter" command-line tool. See also t: labels.Affects the "flutter" command-line tool. See also t: labels.triaged-iosTriaged by iOS platform teamTriaged by iOS platform team
Description
Currently, the Flutter feature enable-uiscene-migration is disabled by default. Once we're running, we should have it be enabled by default:
flutter/packages/flutter_tools/lib/src/features.dart
Lines 259 to 269 in 542705c
| const uiSceneMigration = Feature( | |
| name: 'support for migrating to UIScene lifecycle', | |
| extraHelpText: | |
| 'If enabled, Flutter will migrate your app to iOS UIScene lifecycle if possible or ' | |
| 'otherwise instruct you to migrate manually.', | |
| configSetting: 'enable-uiscene-migration', | |
| environmentOverride: 'FLUTTER_UISCENE_MIGRATION', | |
| master: FeatureChannelSetting(available: true), | |
| beta: FeatureChannelSetting(available: true), | |
| stable: FeatureChannelSetting(available: true), | |
| ); |
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listteam-iosOwned by iOS platform teamOwned by iOS platform teamtoolAffects the "flutter" command-line tool. See also t: labels.Affects the "flutter" command-line tool. See also t: labels.triaged-iosTriaged by iOS platform teamTriaged by iOS platform team