Remove the Windows 'flutter create' warning (#66113)

This commit is contained in:
stuartmorgan 2020-09-18 17:32:10 -04:00 committed by GitHub
parent 480a082766
commit c11440ae92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -506,15 +506,6 @@ To edit platform code in an IDE see https://flutter.dev/developing-packages/#edi
'directory in order to launch your app.');
globals.printStatus('Your $application code is in $relativeAppMain');
}
// Warn about unstable templates. This shuold be last so that it's not
// lost among the other output.
if (featureFlags.isWindowsEnabled && platforms.contains('windows')) {
globals.printStatus('');
globals.printStatus('WARNING: The Windows tooling and APIs are not yet stable. '
'You will likely need to re-create the "windows" directory after future '
'Flutter updates.');
}
}
return FlutterCommandResult.success();
}