- 02 Oct, 2017 1 commit
-
-
Adam Barth authored
Alignment will eventually replace FractionalOffset.
-
- 26 Sep, 2017 1 commit
-
-
Sarah Zakarias authored
-
- 20 Jun, 2017 1 commit
-
-
Michael Goderbauer authored
Remaining known issues are #10831 and #10830.
-
- 08 Jun, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 07 Jun, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 27 Apr, 2017 1 commit
-
-
Ian Hickson authored
backgroundColor -> color backgroundImage -> image BackgroundImage -> DecorationImage
-
- 21 Apr, 2017 1 commit
-
-
Alexandre Ardhuin authored
* make @immutable const * fix build
-
- 31 Mar, 2017 1 commit
-
-
Alexandre Ardhuin authored
* add @required when there's an assert not null * address review comments
-
- 27 Mar, 2017 1 commit
-
-
Hans Muller authored
-
- 17 Mar, 2017 1 commit
-
-
Adam Barth authored
This machinery is useful for arbitrary boxes (e.g., with FittedBox). Fixes #6463
-
- 14 Mar, 2017 1 commit
-
-
Adam Barth authored
The new name follows the pattern of the name suggesting which layout protocol the parent expects the child to speak. Fixes #8664
-
- 21 Feb, 2017 2 commits
-
-
Alexandre Ardhuin authored
-
Alexandre Ardhuin authored
Fixes #7734
-
- 05 Feb, 2017 1 commit
-
-
Adam Barth authored
This patch converts the Shrine home page to using a sliver-based grid. This required using a CustomScrollView to mix the block at the top with the grid below.
-
- 30 Nov, 2016 1 commit
-
-
Hans Muller authored
-
- 22 Nov, 2016 1 commit
-
-
Adam Barth authored
This patch replaces uses of Flexible with Expanded where we're using FlexFit.tight. We still need to think of a better name for the FlexFit.loose variant. Also, improve the docs for Row, Column, Flex, and RenderFlex to be more problem-oriented and to give a complete account of the layout algorithn. Fixes #6960 Fixes #5169
-
- 14 Oct, 2016 1 commit
-
-
Adam Barth authored
These futures complete when the route is popped off the navigator. This generalizes and simplifies a mechanism already in place for dialogs and menus. Fixes #5283
-
- 16 Sep, 2016 1 commit
-
-
Dragoș Tiselice authored
Fixes #4713.
-
- 19 Aug, 2016 1 commit
-
-
Hans Muller authored
-
- 16 Aug, 2016 1 commit
-
-
Hans Muller authored
-
- 15 Aug, 2016 1 commit
-
-
Hans Muller authored
* Removed unnecessary Shrine hero logic
-
- 08 Aug, 2016 1 commit
-
-
Matt Perry authored
* Shrine tile height now hardcoded to match actual card size. * Animation demo now scales with screen size. BUG=https://github.com/flutter/flutter/issues/5002 BUG=https://github.com/flutter/flutter/issues/5003
-
- 29 Jul, 2016 3 commits
-
-
Dragoș Tiselice authored
* Added custom radii to RRect. This is the first commit towads an implementation of MergeableMaterial. It adds custom radii to RRect. * Renamed RRect constructors and added BorderRadius. BorderRadius is a class similar to EdgeInsets that lets you define all rounded corners of a rounded rectangle easily.
-
Adam Barth authored
These now have sorter names to make the callers less verbose.
-
Adam Barth authored
Some folks didn't realize these existed and asked us to add them. By using them in examples, hopefully folks will discover them more easily.
-
- 22 Jul, 2016 1 commit
-
-
Adam Barth authored
This patch includes a number of improvements: * Material page routes now put a repaint boundary inside their transition so they don't repaint during the transition. * Heroes that are on a quest now get a repaint boundary so we repaint them individually. * I've hoisted the transparent material for the product items up in the widget tree, which doesn't affect performance but makes the ink splashes reach the edge of the product cards. * I've changed the repaint rainbow visualization to make it easier to see what's going on.
-
- 28 Jun, 2016 1 commit
-
-
Hans Muller authored
-
- 20 Jun, 2016 1 commit
-
-
Hans Muller authored
-
- 16 Jun, 2016 1 commit
-
-
Ian Hickson authored
Overview ======== This patch refactors images to achieve the following goals: * it allows references to unresolved assets to be passed around (previously, almost every layer of the system had to know about whether an image came from an asset bundle or the network or elsewhere, and had to manually interact with the image cache). * it allows decorations to use the same API for declaring images as the widget tree. It requires some minor changes to call sites that use images, as discussed below. Widgets ------- Change this: ```dart child: new AssetImage( name: 'my_asset.png', ... ) ``` ...to this: ```dart child: new Image( image: new AssetImage('my_asset.png'), ... ) ``` Decorations ----------- Change this: ```dart child: new DecoratedBox( decoration: new BoxDecoration( backgroundImage: new BackgroundImage( image: DefaultAssetBundle.of(context).loadImage('my_asset.png'), ... ), ... ), child: ... ) ``` ...to this: ```dart child: new DecoratedBox( decoration: new BoxDecoration( backgroundImage: new BackgroundImage( image: new AssetImage('my_asset.png'), ... ), ... ), child: ... ) ``` DETAILED CHANGE LOG =================== The following APIs have been replaced in this patch: * The `AssetImage` and `NetworkImage` widgets have been split in two, with identically-named `ImageProvider` subclasses providing the image-loading logic, and a single `Image` widget providing all the widget tree logic. * `ImageResource` is now `ImageStream`. Rather than configuring it with a `Future<ImageInfo>`, you complete it with an `ImageStreamCompleter`. * `ImageCache.load` and `ImageCache.loadProvider` are replaced by `ImageCache.putIfAbsent`. The following APIs have changed in this patch: * `ImageCache` works in terms of arbitrary keys and caches `ImageStreamCompleter` objects using those keys. With the new model, you should never need to interact with the cache directly. * `Decoration` can now be `const`. The state has moved to the `BoxPainter` class. Instead of a list of listeners, there's now just a single callback and a `dispose()` method on the painter. The callback is passed in to the `createBoxPainter()` method. When invoked, you should repaint the painter. The following new APIs are introduced: * `AssetBundle.loadStructuredData`. * `SynchronousFuture`, a variant of `Future` that calls the `then` callback synchronously. This enables the asynchronous and synchronous (in-the-cache) code paths to look identical yet for the latter to avoid returning to the event loop mid-paint. * `ExactAssetImage`, a variant of `AssetImage` that doesn't do anything clever. * `ImageConfiguration`, a class that describes parameters that configure the `AssetImage` resolver. The following APIs are entirely removed by this patch: * `AssetBundle.loadImage` is gone. Use an `AssetImage` instead. * `AssetVendor` is gone. `AssetImage` handles everything `AssetVendor` used to handle. * `RawImageResource` and `AsyncImage` are gone. The following code-level changes are performed: * `Image`, which replaces `AsyncImage`, `NetworkImage`, `AssetImage`, and `RawResourceImage`, lives in `image.dart`. * `DecoratedBox` and `Container` live in their own file now, `container.dart` (they reference `image.dart`). DIRECTIONS FOR FUTURE RESEARCH ============================== * The `ImageConfiguration` fields are mostly aspirational. Right now only `devicePixelRatio` and `bundle` are implemented. `locale` isn't even plumbed through, it will require work on the localisation logic. * We should go through and make `BoxDecoration`, `AssetImage`, and `NetworkImage` objects `const` where possible. * This patch makes supporting animated GIFs much easier. * This patch makes it possible to create an abstract concept of an "Icon" that could be either an image or a font-based glyph (using `IconData` or similar). (see https://github.com/flutter/flutter/issues/4494) RELATED ISSUES ============== Fixes https://github.com/flutter/flutter/issues/4500 Fixes https://github.com/flutter/flutter/issues/4495 Obsoletes https://github.com/flutter/flutter/issues/4496
-
- 14 Jun, 2016 1 commit
-
-
Hans Muller authored
-
- 13 Jun, 2016 1 commit
-
-
Hans Muller authored
-
- 07 Jun, 2016 1 commit
-
-
Adam Barth authored
This fix isn't completely statisfying because it has a scaling limit. The ideal fix would actually viewport the tiles in the grid. However, this fix is much easier at the moment. Fixes #4395
-
- 03 Jun, 2016 1 commit
-
-
Hans Muller authored
-
- 02 Jun, 2016 1 commit
-
-
Hans Muller authored
-