- 25 Mar, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 21 Mar, 2022 1 commit
-
-
Pierre-Louis authored
* fix deprecated_new_in_comment_reference for `material` library in a future version of the SDK, these will be flagged, fix them now * Update pubspec.yaml
-
- 18 Mar, 2022 1 commit
-
-
Jonah Williams authored
-
- 04 Mar, 2022 1 commit
-
-
Viren Khatri authored
-
- 03 Mar, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 01 Mar, 2022 1 commit
-
-
Viren Khatri authored
* migrates lib/foundation and lib/widgets * migrates lib/painting and lib/material * migrates lib/cupertino, lib/gestures, lib/services, lib/semantics and lib/rendering * fixes failing tests * migrates test/ * improves hashing of lists
-
- 23 Feb, 2022 1 commit
-
-
Tomasz Gucio authored
-
- 22 Feb, 2022 1 commit
-
-
chunhtai authored
-
- 03 Feb, 2022 2 commits
-
-
Ian Hickson authored
-
Jason Simmons authored
-
- 26 Jan, 2022 1 commit
-
-
Jonas Martinez authored
-
- 21 Jan, 2022 1 commit
-
-
Marcel Kirchhoff authored
* Call image stream listeners with new flag * Make _synchronousCall private * Rename _synchronousCall parameter to be more descriptive and add more documentation * Rename _hasInitialListeners to _addingInitialListeners and provide a better explanation * Formatting fix * Add tests * Remove dependency on decoration_test.dart * Simplify tests * Remove empty line in comment * Documentation * Trigger tests * Trigger tests * Flip boolean value
-
- 13 Jan, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 12 Dec, 2021 1 commit
-
-
Dan Field authored
-
- 11 Dec, 2021 1 commit
-
-
Dan Field authored
* Remove chunk event subscription when disposing a MultiFrameImageStreamCompleter * Add impl.. * stray prints
-
- 07 Dec, 2021 1 commit
-
-
Dan Field authored
-
- 04 Dec, 2021 1 commit
-
-
Ian Hickson authored
-
- 01 Dec, 2021 1 commit
-
-
Greg Spencer authored
-
- 11 Nov, 2021 1 commit
-
-
smitsk authored
-
- 08 Nov, 2021 1 commit
-
-
Tomasz Gucio authored
-
- 03 Nov, 2021 1 commit
-
-
LongCatIsLooong authored
-
- 27 Oct, 2021 1 commit
-
-
Everskies authored
-
- 08 Oct, 2021 3 commits
-
-
Ian Hickson authored
-
Zachary Anderson authored
This reverts commit 5fd259be.
-
Ian Hickson authored
-
- 04 Oct, 2021 1 commit
-
-
Greg Spencer authored
This does a cleanup of the examples, removing all of the "section" markers and extra comments that we don't need anymore now that the samples are no longer in the source code. It also removes the --template arguments from the {@tool dartpad} and {@tool sample} directives, since those are no longer used. It converts two examples that I discovered were still embedded into linked examples in the examples folder. I didn't delete the templates from the snippets config folder yet, because there are still embedded samples in the dart:ui package from the engine that use them. Once dart:ui no longer uses the templates, they can be removed. I bumped the version of the snippets package to pick up a change that allows removal of the --template argument.
-
- 29 Sep, 2021 1 commit
-
-
Hans Muller authored
-
- 28 Sep, 2021 1 commit
-
-
Greg Spencer authored
This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework. The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead. The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
-
- 11 Sep, 2021 1 commit
-
-
LongCatIsLooong authored
-
- 07 Sep, 2021 1 commit
-
-
Justin McCandless authored
Simplifying and refactoring parts of RenderEditable. Functionality is the same.
-
- 26 Aug, 2021 2 commits
- 25 Aug, 2021 1 commit
-
-
Greg Spencer authored
This extracts the sample code out from the API doc comments, and places them in separate files on disk, allowing running of the examples locally, testing them, and building of slightly larger examples.
-
- 24 Aug, 2021 1 commit
-
-
Deepak Penaganti authored
-
- 20 Aug, 2021 1 commit
-
-
nt4f04uNd authored
-
- 19 Aug, 2021 1 commit
-
-
Dan Field authored
-
- 18 Aug, 2021 1 commit
-
-
ColdPaleLight authored
-
- 16 Aug, 2021 1 commit
-
-
Dan Field authored
-
- 12 Aug, 2021 1 commit
-
-
Greg Spencer authored
Switch document generation to use the snippets package instead of the snippets code in the Flutter repo. In the process, some bugs in sample code analysis have been fixed, and I've fixed some more errors in the samples. This will allow the snippets package to be developed separately from the Flutter repo, and reduce the code in the Flutter repo. The snippets code is deleted in this PR. I also converted some comments in the snippet templates to be regular comments instead of doc comments, because having a doc comment block before the imports causes the Dart import sorter to lose the comment. They should have been regular comments in the first place. The snippets package resides in the assets-for-api-docs repo. The sample analysis has also been converted to be run in parallel, and I've bumped the Dartdoc version to 1.0.2.
-
- 04 Aug, 2021 1 commit
-
-
Greg Spencer authored
This fixes how the sample analyzer handles missing_identifier errors. It was looking at the wrong line, and missing an else clause, so it was silently allowing missing_identifier errors to pass. In addition, this fixes the sample generation so that it uses the correct filename for the output files: it previously was looking for the first line that had a filename, which was meant to indicate a non-generated line. This change adds a new Line.generated constructor for generated lines, so that they can also have the correct filename associated with them.
-