File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 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(
216216const Feature windowsUwpEmbedding = Feature (
217217 name: 'Flutter for Windows UWP' ,
218218 configSetting: 'enable-windows-uwp-desktop' ,
219+ extraHelpText: 'Warning: Windows UWP support is obsolete and will be removed.' ,
219220 master: FeatureChannelSetting (
220221 available: true ,
221222 ),
Original file line number Diff line number Diff line change @@ -382,6 +382,10 @@ void main() {
382382 expect (featureFlags.isWindowsUwpEnabled, true );
383383 });
384384
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+
385389 testWithoutContext ('Flutter Windows UWP desktop off by default on stable' , () {
386390 final FeatureFlags featureFlags = createFlags ('stable' );
387391
You can’t perform that action at this time.
0 commit comments