1. 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
  2. 18 Aug, 2016 11 commits
  3. 17 Aug, 2016 12 commits
  4. 16 Aug, 2016 11 commits
  5. 15 Aug, 2016 5 commits
    • Piyush K's avatar
      Grammar check on Readme (#5413) · 3dda6290
      Piyush K authored
      installed changed to installs:
      The `flutter run --release` command both builds and installed the Flutter app.
      changed to 
      The `flutter run --release` command both builds and installs the Flutter app.
      3dda6290
    • Ian Hickson's avatar
      Fix the logo widget (#5414) · 0d736332
      Ian Hickson authored
      Some tweaks to the logo widget:
      
      * remove bad assert
      * allow text color to be configured
      * make logo pretty in dark mode in gallery
      * fix some docs
      0d736332
    • Jason Simmons's avatar
    • Hans Muller's avatar
      Removed unnecessary Shrine hero logic (#5394) · 6e62df42
      Hans Muller authored
      * Removed unnecessary Shrine hero logic
      6e62df42
    • 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