1. 16 Dec, 2015 1 commit
  2. 23 Nov, 2015 1 commit
  3. 16 Nov, 2015 1 commit
    • Hixie's avatar
      More resilient Widget tests · d041f3ea
      Hixie authored
      - force the time dilation to 1.0 for the Widget tests, so that a local
        change doesn't break all the tests during development.
      - add missing license block to all the files.
      - set ui.window.onBeginFrame to null when you use WidgetTester, so that
        the engine doesn't trigger any confusing frames after our fake frames.
      d041f3ea
  4. 10 Oct, 2015 1 commit
  5. 01 Oct, 2015 3 commits
  6. 30 Sep, 2015 1 commit
  7. 25 Sep, 2015 1 commit
  8. 17 Sep, 2015 1 commit
    • Adam Barth's avatar
      Create gestures.dart · 41b8ffd6
      Adam Barth authored
      This patch is part of a sequence of patches towards fewer top-level libraries.
      In this patch, the gesture libraries are combined into one gestures.dart
      library.
      41b8ffd6
  9. 15 Sep, 2015 1 commit
    • Hixie's avatar
      Ignore generation of child if child is unchanged · dfd821e5
      Hixie authored
      Also:
      
       - don't mark a node as from the new generation if it is dirty, since we
         know it still has to be built.
      
       - establish the rule that you can't call setState() during initState()
         or build().
      
       - make syncChild() return early for unchanged children.
      
       - update the tests, including adding a new one.
      dfd821e5
  10. 14 Sep, 2015 1 commit
  11. 10 Sep, 2015 1 commit
    • Adam Barth's avatar
      Remove "disqualified" concept · 2234294d
      Adam Barth authored
      Allows a non-initialised stateful component to be used as a source of
      settings more than once. Instead of asserting that it was only being
      used once, we assert that once you are stateful you don't get used as a
      bag of settings, which is the real thing we were trying to avoid.
      
      A lot of code ends up using StatefulComponents as a source multiple
      times in a row, and before this would fail.
      
      Patch by Ian Hickson
      2234294d