1. 14 Dec, 2015 1 commit
  2. 20 Nov, 2015 1 commit
    • Adam Barth's avatar
      Callback identity is too fragile for CustomPaint · 72329cf4
      Adam Barth authored
      Many of the widgets that use CustomPaint were spamming repaints because
      CustomPaint repaints when the identity of the onPaint callback changes, which
      it does every build for StatelessComponents.
      
      This patch changes CustomPaint to use a CustomPainter, similar to the new
      custom layout widgets. The CustomPainter has a `shouldRepaint` function along
      with its `paint` function. This function gives clients explicit control over
      when the custom paint object repaints.
      72329cf4
  3. 24 Oct, 2015 1 commit
    • Hixie's avatar
      Strong modeify the examples · a6c473ea
      Hixie authored
      This makes skyanalyzer also check the examples, and fixes everything it
      found there.
      a6c473ea
  4. 20 Oct, 2015 2 commits
  5. 19 Oct, 2015 1 commit
  6. 10 Oct, 2015 3 commits
  7. 26 Sep, 2015 1 commit
  8. 19 Aug, 2015 2 commits
    • Adam Barth's avatar
      Add package:sky/rendering.dart · dea3a092
      Adam Barth authored
      Similar to widgets.dart, rendering.dart exports the entire rendering layer.
      Also, update the examples to use rendering.dart and widgets.dart. Also clean up
      some exports so that the examples have more sensible imports.
      dea3a092
    • Adam Barth's avatar
      Split box.dart into many files · 50bfdedb
      Adam Barth authored
      Sadly, box.dart has grown much longer than 1000 lines. This patch splits it up
      into several files based on the class hierarchy. Fortunately, many of these
      classes are loosely coupled to each other.
      50bfdedb
  9. 17 Aug, 2015 1 commit
    • Eric Seidel's avatar
      Fix analyzer warnings · d5fe622a
      Eric Seidel authored
      We had a remarkable number of analyzer failures.
      
      I'll fix the bots to analyze across the whole project
      in a follow-up patch, that should prevent this
      in the future.
      
      @abarth
      d5fe622a
  10. 08 Aug, 2015 1 commit
  11. 07 Aug, 2015 1 commit
    • Adam Barth's avatar
      Rename various text-related classes · 4a70cfed
      Adam Barth authored
       - Inline -> Pargraph. This class is actually a box, not an inline. It's really
         a wrapper for RenderParagraph, so Paragraph is the normal name.
      
       - InlineBase -> RenderInline. The name we used in C++ for the base class of
         all inlines was RenderInline, which removes the ugly "Base" suffix.
      
       - InlineText -> RenderText. Aligns this name with C++.
      
       - InlineStyle -> RenderStyled. Matches the foregoing pattern.
      4a70cfed
  12. 28 Jul, 2015 2 commits
  13. 16 Jul, 2015 1 commit