Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
20897c3f
Commit
20897c3f
authored
May 13, 2016
by
Seth Ladd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Box too big (#3884)
* shrink analytics message to < 80 chars * catch line ending
parent
40c0d6ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
15 deletions
+10
-15
usage.dart
packages/flutter_tools/lib/src/usage.dart
+10
-15
No files found.
packages/flutter_tools/lib/src/usage.dart
View file @
20897c3f
...
...
@@ -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);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment