1. 30 Sep, 2015 21 commits
  2. 29 Sep, 2015 17 commits
  3. 28 Sep, 2015 2 commits
    • Devon Carew's avatar
      Merge pull request #1375 from devoncarew/customize_dartdoc · ebd7fa3e
      Devon Carew authored
      customize the generated dartdoc to look like flutter.io
      ebd7fa3e
    • Hixie's avatar
      Require giving a GlobalKey to UniqueComponent · 5487b954
      Hixie authored
      Having UniqueComponent automatically generate its own key is a trap. If
      anyone ever creates a UniqueComponent in a build function (rather than
      ahead of time) and forgets to pass a key, then that entire subtree is
      going to be rebuilt, including layout, every time it's updated. Since
      there's basically no way for us to catch this, we should at least force
      the author to see the explicit "new GlobalKey()" call in their code.
      5487b954