Closed
Description
Most of the output from flutter create
is showing the pub
dependencies that are added from every blank template. Suppress this on an initial create
, it adds a lot of noise, and the user hasn't explicitly added these dependencies so it's confusing and hiding the actually interesting "how to run" instructions.
Similar request to #93036.
Probably caused by #110851?
$ flutter create test_create
Creating project test_create...
Running "flutter pub get" in test_create... 997ms
Resolving dependencies in test_create...
+ async 2.10.0
+ boolean_selector 2.1.1
+ characters 1.2.1
+ clock 1.1.1
+ collection 1.17.0
+ cupertino_icons 1.0.5
+ fake_async 1.3.1
+ flutter 0.0.0 from sdk flutter
+ flutter_lints 2.0.1
+ flutter_test 0.0.0 from sdk flutter
+ js 0.6.5
+ lints 2.0.1
+ matcher 0.12.13
+ material_color_utilities 0.2.0
+ meta 1.8.0
+ path 1.8.2
+ sky_engine 0.0.99 from sdk flutter
+ source_span 1.9.1
+ stack_trace 1.11.0
+ stream_channel 2.1.1
+ string_scanner 1.2.0
+ term_glyph 1.2.1
+ test_api 0.4.16
+ vector_math 2.1.4
Changed 24 dependencies in test_create!
Wrote 127 files.
All done!
You can find general documentation for Flutter at: https://docs.flutter.dev/
Detailed API documentation is available at: https://api.flutter.dev/
If you prefer video documentation, consider:
https://www.youtube.com/c/flutterdev
In order to run your application, type:
$ cd test_create
$ flutter run
Your application code is in test_create/lib/main.dart.