Box too big (#3884)

* shrink analytics message to < 80 chars

* catch line ending
This commit is contained in:
Seth Ladd 2016-05-13 09:44:36 -07:00
parent 40c0d6ea12
commit 20897c3f66

View File

@ -93,23 +93,18 @@ class Usage {
return;
_printedUsage = true;
final String versionString = FlutterVersion.getVersionString(whitelistBranchName: true);
String welcomeString = 'Welcome to Flutter! - Flutter version $versionString - https://flutter.io';
welcomeString = welcomeString.padLeft((welcomeString.length + 100) ~/ 2);
welcomeString = welcomeString.padRight(100);
printStatus('');
printStatus('''
$welcomeString
The Flutter tool anonymously reports feature usage statistics and basic crash reports to Google in
order to help Google contribute improvements to Flutter over time. See Google's privacy policy: ║
https://www.google.com/intl/en/policies/privacy/
Use "flutter config --no-analytics" to disable analytics reporting
Welcome to Flutter! - https://flutter.io
The Flutter tool anonymously reports feature usage statistics and basic
crash reports to Google in order to help Google contribute improvements to
Flutter over time. See Google's privacy policy: ║
https://www.google.com/intl/en/policies/privacy/
Use "flutter config --no-analytics" to disable analytics reporting.
''', emphasis: true);
}
}