1. 29 Jul, 2019 1 commit
  2. 22 Jul, 2019 3 commits
  3. 16 Jul, 2019 1 commit
  4. 28 Jun, 2019 1 commit
  5. 07 Jun, 2019 1 commit
  6. 01 Jun, 2019 1 commit
  7. 30 May, 2019 1 commit
  8. 28 May, 2019 2 commits
  9. 21 May, 2019 1 commit
  10. 17 May, 2019 1 commit
  11. 29 Apr, 2019 1 commit
  12. 23 Apr, 2019 1 commit
  13. 22 Apr, 2019 1 commit
  14. 05 Apr, 2019 1 commit
  15. 27 Mar, 2019 1 commit
  16. 26 Mar, 2019 2 commits
  17. 12 Mar, 2019 1 commit
  18. 08 Mar, 2019 2 commits
  19. 06 Mar, 2019 1 commit
  20. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      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
      387f8854
  21. 21 Feb, 2019 2 commits
  22. 13 Feb, 2019 3 commits
  23. 08 Feb, 2019 2 commits
  24. 26 Jan, 2019 1 commit
  25. 10 Jan, 2019 1 commit
  26. 30 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Allow users to create samples using flutter create. (#23584) · f9c6f305
      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
      f9c6f305
  27. 17 Oct, 2018 1 commit
  28. 11 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Re-land text wrapping/color PR (#22831) · 081d2a7a
      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.
      081d2a7a
  29. 10 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Rename 'application' back to 'module', and make 'app' the default again for templates. (#22888) · 0ff9e8a9
      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.
      0ff9e8a9
  30. 08 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Fix gradle error in devicelab tests (#22814) · e0b182e6
      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.
      e0b182e6
  31. 06 Oct, 2018 1 commit