1. 29 Aug, 2016 3 commits
  2. 26 Aug, 2016 3 commits
  3. 23 Aug, 2016 1 commit
  4. 22 Aug, 2016 1 commit
  5. 20 Aug, 2016 1 commit
  6. 19 Aug, 2016 1 commit
    • Bob Nystrom's avatar
      Fix an incorrect covariant function type. (#5492) · 9efb1685
      Bob Nystrom authored
      The type of rejects should be List<dynamic> to match the type that
      DragTarget expects. Since the function doesn't use rejects anyway,
      there's no need to tighten the type.
      
      Fixes one of the strong_mode_static_type_error errors that is currently
      being ignored.
      9efb1685
  7. 18 Aug, 2016 4 commits
  8. 17 Aug, 2016 1 commit
  9. 16 Aug, 2016 2 commits
  10. 15 Aug, 2016 2 commits
    • 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
    • Ian Hickson's avatar
  11. 11 Aug, 2016 6 commits
    • Jason Simmons's avatar
    • Dragoș Tiselice's avatar
      Added MergeableMaterial Widget. (#5165) · 9284dd40
      Dragoș Tiselice authored
      MergeableMaterial is an animated container that knows how to merge
      separate slices of Material together.
      9284dd40
    • Dragoș Tiselice's avatar
      Added LayoutChangedNotifier. (#5304) · de448c20
      Dragoș Tiselice authored
      Added a simple widget that automatically dispatches a
      LayoutChangedNotification when its child changes layout.
      de448c20
    • Dragoș Tiselice's avatar
      Added clipping opt-out for Stack. (#5326) · fd119f4f
      Dragoș Tiselice authored
      Added a flag that instructs Stack how to deal with overflowing
      children: they can either be clipped or not.
      fd119f4f
    • Ian Hickson's avatar
    • Ian Hickson's avatar
      Improve our scroll physics on iOS (#5340) · 17cdc889
      Ian Hickson authored
      Changes in this patch:
      - iOS now uses a different scrollDrag constant than Android.
         - ScrollConfigurationDelegate now knows about target platforms.
         - ScrollBehaviors now know about target platforms.
         - RawInputLine now has to be told what platform it's targetting.
         - PageableList now has a concept of target platform.
      - make debugPrintStack filter its stack.
         - move debugPrintStack to `assertions.dart`.
      - add support for limiting the number of frames to debugPrintStack.
      - make defaultTargetPlatform default to android in test environments.
      - remove OverscrollStyle and MaterialApp's overscrollStyle argument. You
        can now control the overscroll style using Theme.platform.
      - the default scroll configuration is now private to avoid people
        relying on the defaultTargetPlatform getter in their subclasses (since
        they really should use Theme.of(context).platform).
      - fix some typos I noticed in some tests.
      - added a test for flinging scrollables, that checks that the behavior
        differs on the two target platforms.
      - made flingFrom and fling in the test API pump the frames.
      - added more docs to the test API.
      - made the TestAsyncUtils.guard() method report uncaught errors to help
        debug errors when using that API.
      17cdc889
  12. 08 Aug, 2016 1 commit
    • Dragoș Tiselice's avatar
      Material fixes (#5293) · e1ebc41a
      Dragoș Tiselice authored
      * Added return value to a onNotification callback.
      
      The LayoutChangedNotification callback was missing a return value.
      This commit changes it to return true and stop notification from
      bubbling up the tree.
      
      * Changed _RenderInkFeatures to use fresh clip box.
      
      Since it wasn't using the most current value of the RenderBox's
      size, _RenderInkFeatures was rendering splashes incorrectly when
      the underlying Material size was animating. This commit changes
      the clip reference to use the size of the Renderbox instead of
      the size method in order to get the newest value.
      e1ebc41a
  13. 05 Aug, 2016 3 commits
  14. 04 Aug, 2016 4 commits
  15. 02 Aug, 2016 2 commits
  16. 01 Aug, 2016 1 commit
  17. 29 Jul, 2016 4 commits