1. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  2. 12 Jun, 2018 1 commit
  3. 11 Jun, 2018 1 commit
    • Greg Spencer's avatar
      Update typedef syntax to use Function notation and turn on lint for old notation. (#18362) · 6c56bb24
      Greg Spencer authored
      Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax.
      
      Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml.
      
      No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
      6c56bb24
  4. 09 Jun, 2018 1 commit
  5. 08 Jun, 2018 1 commit
  6. 07 Jun, 2018 2 commits
  7. 06 Jun, 2018 1 commit
  8. 05 Jun, 2018 2 commits
  9. 04 Jun, 2018 1 commit
  10. 01 Jun, 2018 2 commits
  11. 31 May, 2018 1 commit
  12. 30 May, 2018 4 commits
  13. 26 May, 2018 1 commit
  14. 25 May, 2018 1 commit
  15. 24 May, 2018 1 commit
  16. 23 May, 2018 2 commits
  17. 22 May, 2018 1 commit
  18. 21 May, 2018 1 commit
  19. 18 May, 2018 1 commit
    • Greg Spencer's avatar
      Speed up AnimatedSwitcher. (#17265) · 1f5fcb74
      Greg Spencer authored
      This optimizes the AnimatedSwitcher so that it tags the right widget with its keyed subtree, and avoids rebuilding the transition unnecessarily.
      
      This significantly improves the performance of Chips (which uses AnimatedSwitcher to swap out it's avatar and delete icon children).
      1f5fcb74
  20. 16 May, 2018 2 commits
  21. 15 May, 2018 3 commits
  22. 14 May, 2018 2 commits
  23. 11 May, 2018 1 commit
    • Greg Spencer's avatar
      Add onChangeStart and onChangeEnd to slider. (#17298) · c2c64a5a
      Greg Spencer authored
      This fixes #17169 by adding onChangeStart and onChangeEnd to the slider. These will be called when the user starts a change, and when they end a change, regardless of whether that change is a tap or a drag.
      
      These differ from onChanged, in that they only report when the user starts and ends an interaction, not at every slight change.
      c2c64a5a
  24. 10 May, 2018 2 commits
    • Greg Spencer's avatar
      Fix handling of null body2 text style for chip and slider (#17311) · a365c41c
      Greg Spencer authored
      Before this change, if you specified a non-null textTheme, but the theme you specified didn't have a body2 defined, then creating a ChipTheme would assert (which means creating a ThemeData would fail).
      
      This adds handling for this corner case to default to reasonable values in that case. The slider had the same problem, but for accentTextTheme, so I fixed that too.
      
      While I had the patient open, Hans and I noticed that TextTheme.merge wasn't doing the right thing in the case where some members were null either, so I fixed that, and added some examples, since merge/copyWith are common operations that are not always well understood.
      
      Fixes #17251
      a365c41c
    • Ian Hickson's avatar
  25. 09 May, 2018 1 commit
  26. 04 May, 2018 2 commits
  27. 03 May, 2018 1 commit