1. 16 Oct, 2015 1 commit
  2. 10 Oct, 2015 1 commit
  3. 09 Oct, 2015 1 commit
    • Hixie's avatar
      Relative paths in internal flutter libraries · 37bda251
      Hixie authored
      Now that you import a top-level file for each layer of the Flutter
      framework, within the framework we can use relative paths without being
      worried about the copy/pasta problem we used to have.
      37bda251
  4. 29 Sep, 2015 1 commit
  5. 11 Sep, 2015 1 commit
  6. 08 Sep, 2015 1 commit
  7. 02 Sep, 2015 1 commit
    • Adam Barth's avatar
      Move widgets and rendering inside src · 693ddcd8
      Adam Barth authored
      Code outside of package:sky should import this code using
      
      package:sky/rendering.dart
      package:sky/widgets.dart
      
      Moving this code into the "src" directory is a convention that signifies that
      and it cleans up the generated dartdoc because the libraries in the src
      directory aren't included in the generated documentation. Instead, the classes
      are documented in the widgets.dart and rendering.dart libraries.
      693ddcd8
  8. 29 Aug, 2015 1 commit
  9. 19 Aug, 2015 1 commit
    • 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
  10. 14 Aug, 2015 1 commit
  11. 13 Aug, 2015 1 commit
  12. 07 Aug, 2015 2 commits
    • Adam Barth's avatar
      Unbreak text · b5e0b7c9
      Adam Barth authored
      Previously, no text was appearing because we weren't actually converting the
      Dart objects into DOM.
      b5e0b7c9
    • 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
  13. 31 Jul, 2015 1 commit
    • Adam Barth's avatar
      Fix TextAlign.right · 2b0e4784
      Adam Barth authored
      We were applying the style to the RenderInline but we actually needed to apply
      it to the RenderParagraph. The lineHeight property had the same problem.
      2b0e4784
  14. 28 Jul, 2015 2 commits
  15. 16 Jul, 2015 1 commit