1. 09 Feb, 2016 7 commits
  2. 08 Feb, 2016 10 commits
  3. 06 Feb, 2016 16 commits
  4. 05 Feb, 2016 7 commits
    • Hans Muller's avatar
      Merge pull request #1640 from HansMuller/alphabetize_components · 8999886f
      Hans Muller authored
      Alphabetize component demos
      8999886f
    • Todd Volkert's avatar
      Merge pull request #1641 from tvolkert/master · 1d3ce8e8
      Todd Volkert authored
      Create flutter_tools.dart to represent public tools API
      1d3ce8e8
    • Todd Volkert's avatar
      60b6b793
    • Hans Muller's avatar
      alphabetize component demos · c9ea79e8
      Hans Muller authored
      c9ea79e8
    • Hans Muller's avatar
      Merge pull request #1638 from HansMuller/gallery_drawer · 972781f9
      Hans Muller authored
      Gallery support for light/dark theme switching, slow animation speed
      972781f9
    • Ian Hickson's avatar
      Merge pull request #1637 from Hixie/asserts · cb9152ca
      Ian Hickson authored
      Improve exceptions and asserts for rendering lib.
      cb9152ca
    • Hixie's avatar
      Improve exceptions and asserts for rendering lib. · 1a0484cc
      Hixie authored
      * Use actual exceptions rather than assertions containing code
        containing strings when trying to give messages to authors.
      * Introduce RenderingError which is an AssertionError that takes a
        string argument, to support the above.
      * Provide a BoxDimensions.hasBoundedWidth/hasBoundedHeight API.
      * Document BoxDimensions.isNormalized.
      * Provide more useful information when we assert isNormalized and find
        that it is false.
      * When finding the size is infinite, crawl the tree to figure out which
        render box is likely responsible for the infinite constraints.
      * Provide more information when size doesn't match the constraints.
      * Provide more information when intrinsic dimension methods violate the
        constraints.
      * Only spam a huge amount of information for the first exception from
        the rendering library. I've noticed a lot of people looking at the
        last exception printed rather than the first and that's very
        misleading -- after the rendering library hits an exception, all bets
        are off regarding what'll happen in the future. All kinds of asserts
        might fire.
      * Improve docs around the debug methods and flags for the above.
      * Make Block default to have no children. Previously, giving no children
        crashed with a confusing message about a null deref in an assert.
      1a0484cc