1. 01 Feb, 2019 1 commit
  2. 12 Sep, 2018 1 commit
  3. 05 Jun, 2018 1 commit
  4. 03 May, 2018 1 commit
  5. 11 Mar, 2018 1 commit
  6. 21 Dec, 2017 1 commit
  7. 29 Sep, 2017 1 commit
  8. 01 Sep, 2017 1 commit
  9. 13 Jun, 2017 1 commit
  10. 27 Apr, 2017 1 commit
  11. 24 Mar, 2017 2 commits
  12. 31 Jan, 2017 1 commit
  13. 08 Nov, 2016 1 commit
  14. 23 Oct, 2016 1 commit
  15. 15 Sep, 2016 1 commit
  16. 15 Aug, 2016 1 commit
    • Ian Hickson's avatar
      A Flutter logo widget. (#5382) · 955b3e21
      Ian Hickson authored
      Instead of a PNG, the Flutter gallery widget is now drawn in code.
      
      There's now a FlutterLogoDecoration class that paints the flutter logo
      anywhere you can use a Decoration (e.g. AnimatedContainer).
      
      There's now a FlutterLogo class that honors the IconTheme.
      
      The About dialog box API now takes a Widget for the applicationIcon,
      instead of an ImageProvider. It uses IconTheme to make the icon the
      right size instead of using an Image widget.
      
      Add padding, duration, and curve properties to the DrawerHeader.
      Make the child of a DrawerHeader optional.
      
      Clean up UserAccuntsDrawerHeader a bit.
      
      Add some useful properties and methods to EdgeInsets.
      
      Add some debug logic to RenderDecoratedBox to catch unpaired
      save/restore calls when possible.
      
      Make GestureDetector fill its parent if it has no children. Fixes
      https://github.com/flutter/flutter/issues/5380
      955b3e21
  17. 20 Jul, 2016 1 commit
  18. 24 May, 2016 1 commit
  19. 16 May, 2016 2 commits
  20. 08 Apr, 2016 1 commit
  21. 01 Apr, 2016 1 commit
  22. 31 Mar, 2016 1 commit
  23. 25 Mar, 2016 1 commit
    • Adam Barth's avatar
      Add a default MediaQuery value · 3c6d4f66
      Adam Barth authored
      Now MediaQuery.of always returns a non-null value. By default, you get the
      values associated with the current ui.Window.
      
      Fixes #2894
      3c6d4f66
  24. 18 Mar, 2016 1 commit
  25. 14 Mar, 2016 1 commit
  26. 12 Mar, 2016 3 commits
  27. 09 Feb, 2016 1 commit
  28. 11 Jan, 2016 1 commit
  29. 08 Dec, 2015 1 commit
  30. 12 Oct, 2015 1 commit
    • Hixie's avatar
      Lots of trivial warning fixes · f2cc43a4
      Hixie authored
      Add type annotations in many places.
      Fix some identifiers to have more lint-satisfying names.
      Make all operator==s consistent in style.
      Reorder some functions for consistency.
      Make ParentData no longer dynamic, and fix all the code around that.
      f2cc43a4
  31. 10 Oct, 2015 1 commit
  32. 09 Oct, 2015 2 commits
  33. 01 Oct, 2015 1 commit
  34. 18 Sep, 2015 1 commit
    • Adam Barth's avatar
      Move theme into material.dart · 4467a268
      Adam Barth authored
      Also, introduce Colors and Typography to hold the material colors and the
      typography declarations. Previously we expected clients of these libraries to
      import them into a namespace, but that doesn't play nice with re-exporting them
      from material.dart.
      4467a268
  35. 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