- 11 Jun, 2020 1 commit
-
-
Alexandre Ardhuin authored
* add language version 2.8 in packages/flutter * enable non-nullable analyzer flag
-
- 10 Mar, 2020 1 commit
-
-
Gary Qian authored
Revert "Add missing features to `DefaultTextStyleTransition` and `AnimatedDefaultTextStyle` (#51517)" (#52352)
-
- 06 Mar, 2020 1 commit
-
-
Darren Austin authored
* Fix for negative padding from a curve in AnimatedPadding. * Added a EdgeInsets.clamp function that would return an EdgeInsets instance instead of a _MixedEdgeInsets used by the base class. This was causing some tests to fail that didn't have a text direction.
-
- 03 Mar, 2020 1 commit
-
-
Gary Qian authored
-
- 13 Feb, 2020 1 commit
-
-
Gary Qian authored
-
- 10 Feb, 2020 1 commit
-
-
Greg Spencer authored
This PR modifies the existing API docs samples to use DartPad so that all of the samples are now interactive apps on the API docs site. It also removes the restriction for the max width of the description area so that the dartpad region can expand horizontally. I updated the first paragraph on the API docs to indicate that Flutter is more than just mobile now (same text as the README.md at the top level). I modified a few of the examples so that they looked nicer, and fit better on the page. I added the sample description text above each DartPad instance, since that often defines the context of the example. I removed animations and images when they were redundant with the sample content. There were a few that made sense to keep, so I did.
-
- 31 Jan, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 28 Jan, 2020 1 commit
-
-
Dan Field authored
-
- 24 Jan, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 16 Jan, 2020 1 commit
-
-
suragch authored
The error message was misleading because BoxDecoration does not have a `backgroundColor` parameter. Instead it has a `color` parameter, which sets the background color. I also removed the optional `new` keyword.
-
- 14 Jan, 2020 1 commit
-
-
Kate Lovett authored
-
- 08 Jan, 2020 1 commit
-
-
Greg Spencer authored
-
- 04 Dec, 2019 1 commit
-
-
Alexandre Ardhuin authored
* implicit-casts:false in flutter/lib/src/widgets * address review comments * address review comment
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 22 Nov, 2019 1 commit
-
-
Todd Volkert authored
-
- 18 Sep, 2019 1 commit
-
-
Robin Jespersen authored
-
- 13 Sep, 2019 1 commit
-
-
Michael Goderbauer authored
-
- 05 Sep, 2019 1 commit
-
-
Ian Hickson authored
* Minor improvements to framework documentation. * maybePop documentation fix * Mark some flutter_test arguments required. Without these set, we get a crash. * Minor correction to ListView docs
-
- 23 Aug, 2019 2 commits
-
-
Greg Spencer authored
I noticed that we were pretty inconsistent with the way that we checked the value of clipBehavior in the framework, so I normalized the usages and updated docs where necessary. This is a breaking change if you used to pass null explicitly to FlatButton, OutlineButton or RaisedButton constructors, expecting to get Clip.none. It will now assert if you do that. Existing implementations that pass null implicitly by not specifying clipBehavior won't need to change their call sites. It always implicitly defaulted to Clip.none before, and it will continue to do that, it's only places where it was explicitly set to null in order to get the implicit default that it will fail.
-
Michael Goderbauer authored
TweenAnimationBuilder for building custom animations without managing an AnimationController (#38317)
-
- 01 Aug, 2019 1 commit
-
-
Michael Goderbauer authored
-
- 10 Jul, 2019 1 commit
-
-
Greg Spencer authored
When I added reverseDuration to animation controllers in #32730, I also added it to the implicit animations that Flutter has. However, as @efortuna pointed out to me, it doesn't actually do anything there, since all of the intrinsic animations run forwards, not in the reverse direction, and there's no way to reverse them. So, this PR removes the reverseDuration argument from the implicit animations to avoid confusion. Fixes #35769
-
- 09 Jul, 2019 1 commit
-
-
John Ryan authored
* add sample code for AnimatedContainer * use stateful_widget_scaffold snippet template * add sample explanation * add setState() to example assumptions for analyzer * update description * use snippet instead of sample * change sample to match assets-for-api-docs * remove constant * update AnimatedContainer sample description add indication the example is depicted by the video and animates when tapped * fix example formatting * make sample conform to 80 col limit * add "implemented below" to illustration description * formatting for readability
-
- 13 Jun, 2019 1 commit
-
-
Michael Goderbauer authored
-
- 01 Jun, 2019 1 commit
-
-
Todd Volkert authored
This is a follow-on to #33370 based on review comments therein.
-
- 16 May, 2019 1 commit
-
-
Greg Spencer authored
This adds a reverseDuration parameter to AnimationController so that the animation has a different duration when going in reverse as it does going forward.
-
- 29 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 05 Apr, 2019 1 commit
-
-
Tim Sneath authored
-
- 03 Apr, 2019 1 commit
-
-
Michael Goderbauer authored
-
- 18 Mar, 2019 1 commit
-
-
Filip Hracek authored
The current documentation for `AnimatedWidgetBaseState.forEachTween` is exhaustive but a little hard to grok. This dartdoc example provides some clarity.
-
- 09 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 01 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add trailing commas on list/map/parameters * add trailing commas on Invocation with nb of arg>1 * add commas for widget containing widgets * add trailing commas if instantiation contains trailing comma * revert bad change
-
- 29 Jan, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 08 Jan, 2019 1 commit
-
-
Mary authored
-
- 18 Dec, 2018 2 commits
-
-
Alexandre Ardhuin authored
-
Michael Goderbauer authored
-
- 08 Nov, 2018 1 commit
-
-
Greg Spencer authored
This converts existing ## Sample code samples to {@tool sample}...{@end-tool} form. Also: 1. Fixed a minor bug in analyze-sample-code.dart 2. Made the snippet tool only insert descriptions if the description is non-empty. 3. Moved the Card diagram to before the code sample.
-
- 16 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
* Future<void> main * Future<void>.delayed * prefer_void_to_Null * address review comments
-
- 23 Sep, 2018 1 commit
-
-
Ian Hickson authored
-
- 14 Sep, 2018 1 commit
-
-
Alexandre Ardhuin authored
-