File tree 2 files changed +5
-0
lines changed 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,7 @@ const Feature singleWidgetReload = Feature(
216
216
const Feature windowsUwpEmbedding = Feature (
217
217
name: 'Flutter for Windows UWP' ,
218
218
configSetting: 'enable-windows-uwp-desktop' ,
219
+ extraHelpText: 'Warning: Windows UWP support is obsolete and will be removed.' ,
219
220
master: FeatureChannelSetting (
220
221
available: true ,
221
222
),
Original file line number Diff line number Diff line change @@ -382,6 +382,10 @@ void main() {
382
382
expect (featureFlags.isWindowsUwpEnabled, true );
383
383
});
384
384
385
+ testWithoutContext ('Flutter Windows UWP desktop config includes removal warning' , () {
386
+ expect (windowsUwpEmbedding.extraHelpText, contains ('Windows UWP support is obsolete and will be removed' ));
387
+ });
388
+
385
389
testWithoutContext ('Flutter Windows UWP desktop off by default on stable' , () {
386
390
final FeatureFlags featureFlags = createFlags ('stable' );
387
391
You can’t perform that action at this time.
0 commit comments