1. 20 Jan, 2017 9 commits
  2. 19 Jan, 2017 14 commits
  3. 18 Jan, 2017 5 commits
  4. 17 Jan, 2017 6 commits
  5. 14 Jan, 2017 2 commits
  6. 13 Jan, 2017 4 commits
    • Jason Simmons's avatar
      Do not paint a RenderFittedBox with an empty size (#7489) · 3b702448
      Jason Simmons authored
      If the size is empty, then _updatePaintData will produce an invalid transform
      that yields a NaN canvas bounds rectangle
      
      Fixes https://github.com/flutter/flutter/issues/7431
      3b702448
    • Adam Barth's avatar
      Don't analyze dev/missing_dependency_test (#7478) · 113fd6cb
      Adam Barth authored
      That test intentionally has analysis errors to check how the tools react
      to that situation.
      113fd6cb
    • Adam Barth's avatar
      Add GestureArenaTeam (#7481) · 0139c69c
      Adam Barth authored
      Previously, the Slider used a drag gesture recognizer to move the head
      of the slider, but when the slider was in a vertical scroller, the
      recognizer would wait until the user moved the pointer by enough pixels
      to disambiguate between sliding the slider and scrolling the scroller.
      
      That worked fine for actual drags, but the slider should also move when
      the user taps the track. This patch introduces a tap recognizer to
      handle that behavior.
      
      To avoid the slider's drag and tap recognizers from competing with each
      other in the arena, this patch introduces the notion of a
      GestureArenaTeam, which lets several recognizers combine to form one
      entry in the arena.  If that entry wins, the team picks the first of its
      recognizers as the winner, avoiding latency.
      
      Fixes #7454
      0139c69c
    • Adam Barth's avatar
      Refactor IconThemeData.fallback (#7490) · 4955eef8
      Adam Barth authored
      Now IconThemeData.fallback is a factory constructor and IconThemeData.of() does
      the work of computing the fallback for its clients.
      
      Also, add tests for ImageIcon and ListItems.
      4955eef8