- 29 Jul, 2019 1 commit
-
-
Zachary Anderson authored
-
- 22 Jul, 2019 3 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
This reverts commit bd52a78c.
-
Jonah Williams authored
-
- 16 Jul, 2019 1 commit
-
-
Todd Volkert authored
Slight cleanup of file locations in flutter_tools to make it easier to see which files are responsible for data reporting.
-
- 28 Jun, 2019 1 commit
-
-
Jonah Williams authored
-
- 07 Jun, 2019 1 commit
-
-
Jonah Williams authored
-
- 01 Jun, 2019 1 commit
-
-
Josh Burton authored
-
- 30 May, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 28 May, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit faec4ca3.
-
Emmanuel Garcia authored
-
- 21 May, 2019 1 commit
-
-
Michael Thomsen authored
-
- 17 May, 2019 1 commit
-
-
Devon Carew authored
-
- 29 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 23 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 22 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 05 Apr, 2019 1 commit
-
-
Tim Sneath authored
-
- 27 Mar, 2019 1 commit
-
-
Jonah Williams authored
-
- 26 Mar, 2019 2 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
- 12 Mar, 2019 1 commit
-
-
Danny Tuppeny authored
* Add a `flutter create --list-samples` command * Add some comments/docs * Tweak text
-
- 08 Mar, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit 3fd36200.
-
Jonah Williams authored
-
- 06 Mar, 2019 1 commit
-
-
Phil Quitslund authored
-
- 01 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add trailing commas on list/map/parameters * add trailing commas on Invocation with nb of arg>1 * add commas for widget containing widgets * add trailing commas if instantiation contains trailing comma * revert bad change
-
- 21 Feb, 2019 2 commits
-
-
Greg Spencer authored
Fix the length of the valueHelp on the --sample option for the create command, and turn on wrapping. (#28264) The wrapping for some commands was never actually turned on, so this turns it on. Also, it shortens the `valueHelp` for the `--sample` option to be just "id" instead of "the sample ID of the desired sample from the API documentation website (http://docs.flutter.io)", which was causing the line to get far too long. Fixes #23074
-
Alexandre Ardhuin authored
-
- 13 Feb, 2019 3 commits
-
-
Jonah Williams authored
This reverts commit 76061c4f.
-
Jonah Williams authored
-
KyleWong authored
When creating a flutter project, Make sure: applicationid for android conforms to: https://developer.android.com/studio/build/application-id Make sure: bundleid for ios conforms to: https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/understanding_utis/understand_utis_conc/understand_utis_conc.html (Not only the name,but also the organization, as it's a check for whole bundleid.)
-
- 08 Feb, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit 98971f3c.
-
Jonah Williams authored
-
- 26 Jan, 2019 1 commit
-
-
Jonah Williams authored
-
- 10 Jan, 2019 1 commit
-
-
Greg Spencer authored
Now that we have our DNS mapping we should refer to the master docs site that way everywhere.
-
- 30 Oct, 2018 1 commit
-
-
Greg Spencer authored
This adds flutter create --sample which allows users to execute a command which will create a working sample app from samples embedded in the API docs. The command looks something like this: flutter create --sample=chip.DeletableChipAttributes.onDeleted mysample
-
- 17 Oct, 2018 1 commit
-
-
Sebastian Roth authored
Simple convenience function if users create flutter projects in custom folder structures and but want to specify a custom project name.
-
- 11 Oct, 2018 1 commit
-
-
Greg Spencer authored
This attempts to re-land #22656. There are two changes from the original: I turned off wrapping completely when not sending output to a terminal. Previously I had defaulted to wrapping at and arbitrary 100 chars in that case, just to keep long messages from being too long, but that turns out the be a bad idea because there are tests that are relying on the specific form of the output. It's also pretty arbitrary, and mostly people sending output to a non-terminal will want unwrapped text. I found a better way to terminate ANSI color/bold sequences, so that they can be embedded within each other without needed quite as complex a dance with removing redundant sequences. As part of these changes, I removed the Logger.supportsColor setter so that the one source of truth for color support is in AnsiTerminal.supportsColor. * Turn on line wrapping again in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656) This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on). Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified. Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping. Since wrapping is now turned on, also removed many redundant '\n's in the code.
-
- 10 Oct, 2018 1 commit
-
-
Greg Spencer authored
We decided that redefining the default for templates was premature. We're going to go back to having "module" in experimental land again, and we'll try again when we have the feature set fully baked. This keeps the writing of the .metadata files, and writing the template type to them, because that was a good improvement, and there are still a bunch of added tests that improve our coverage.
-
- 08 Oct, 2018 1 commit
-
-
Greg Spencer authored
Fixes a gradle error where it was failing to find a plugin because of an absolute path in the .flutter-plugins file instead of a relative path. I had originally removed this variable because I thought it was redundant with the projectDir, but apparently I was wrong about that (one resolves to a relative path, and one resolves to an absolute path). This PR reverts that part of the change and reintroduces the (not really) redundant variable.
-
- 06 Oct, 2018 1 commit
-
-
Greg Spencer authored
Revert "Turn on line wrapping in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656)" (#22759) This reverts commit e4386321 because it breaks 160 benchmarks, and several devicelab tests, due to changing the format of the output.
-