- 21 Dec, 2019 1 commit
-
-
Jim Graham authored
-
- 20 Dec, 2019 1 commit
-
-
Dan Field authored
-
- 19 Dec, 2019 4 commits
-
-
Alexandre Ardhuin authored
-
Lau Ching Jun authored
This reverts commit c235998a.
-
Alexandre Ardhuin authored
-
Lau Ching Jun authored
This reverts commit d4b49ce9.
-
- 18 Dec, 2019 2 commits
-
-
Lau Ching Jun authored
This reverts commit 0f8c0da0.
-
LongCatIsLooong authored
-
- 17 Dec, 2019 1 commit
-
-
Dan Field authored
-
- 16 Dec, 2019 1 commit
-
-
Kate Lovett authored
-
- 13 Dec, 2019 2 commits
-
-
Justin McCandless authored
smartDashesType and smartQuotesType params for text fields to control iOS's smart punctuation feature.
-
liyuqian authored
-
- 10 Dec, 2019 2 commits
-
-
Shi-Hao Hong authored
-
Jonah Williams authored
-
- 06 Dec, 2019 1 commit
-
-
Tom Robinson authored
-
- 05 Dec, 2019 3 commits
-
-
Greg Spencer authored
This fixes an issue where lines like this: focusNode.canRequestFocus = widget.canRequestFocus ?? focusNode.canRequestFocus; Were causing the canRequestFocus bit to copy the status of the enclosing scope, since canRequestFocus also looks to the enclosing scope to decide if it can focus.
-
Greg Spencer authored
This normalizes all of the "See also" blocks in comments so that they conform in style. They all look like this now: /// See also: /// /// * [MyFavoriteWidget], because it's cool. class Foo {} I removed some useless "See also" blocks, and added commentary to ones that were just "bare" references. This is my penance for adding so many bullets that are "-" instead of "*". :-)
-
Greg Spencer authored
This adds actions and shortcuts arguments to WidgetsApp (and MaterialApp and CupertinoApp) to allow developers to override the default mappings on an application, and to allow for a more complex definition of the default mappings. I've stopped using SelectAction here, in favor of using ActivateAction for all activations, but haven't removed it, to avoid a breaking change, and to allow a common base class for these types of actions. This is because some platforms use the same mapping (web) for both kinds of activations (both select and activate).
-
- 04 Dec, 2019 3 commits
-
-
Brian Egan authored
* Api Samples and Diagrams for the following classes and methods: - AlertDialog - SimpleDialog - SingleChildScrollView - showDatePicker - RichText - InputDecoration - Divider - StreamBuilder - DataTable - BottomSheet - showBottomSheet - showModalBottomSheet * Update packages/flutter/lib/src/material/divider.dart Co-Authored-By:
Kate Lovett <katelovett@google.com> * Update packages/flutter/lib/src/widgets/basic.dart Co-Authored-By:
Kate Lovett <katelovett@google.com> * Update packages/flutter/lib/src/material/data_table.dart Co-Authored-By:
Kate Lovett <katelovett@google.com> * Update packages/flutter/lib/src/material/bottom_sheet.dart Co-Authored-By:
Kate Lovett <katelovett@google.com> * Update packages/flutter/lib/src/material/scaffold.dart Co-Authored-By:
Kate Lovett <katelovett@google.com> * Move animation out of sample * Remove "widget.size", replace with "60"
-
Alexandre Ardhuin authored
* implicit-casts:false in flutter/lib/src/widgets * address review comments * address review comment
-
Michael Goderbauer authored
-
- 03 Dec, 2019 4 commits
-
-
Dan Field authored
-
Sahand Akbarzadeh authored
-
Greg Spencer authored
This fixes some minor things I noticed while doing another change. - Uncomments an old test that wants to be run, but can't be, and marked it as "skipped", so that the code won't rot anymore. - Added the focus state to the short string version of a FocusNode - Added a missing piece of information to findAncestorWidgetOfExactType
-
Kate Lovett authored
-
- 02 Dec, 2019 3 commits
-
-
Kate Lovett authored
This reverts commit c59151b1.
-
Michael Goderbauer authored
-
Tong Mu authored
This PR rewrites MouseTracker's lifecycle, so that mouse callbacks are all triggered in post frame, instead of the current one where some are triggered during the build phase. This PR also changes the onExit callback to MouseRegion, RenderMouseRegion, and MouseTrackerAnnotation, so that it is no longer triggered on dispose.
-
- 27 Nov, 2019 5 commits
-
-
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
-
Ian Hickson authored
-
LongCatIsLooong authored
-
Takeshi Tsukamoto authored
-
Greg Spencer authored
This PR adds TargetPlatform.macOS to the TargetPlatform enum. This allows us to begin implementation of some adaptive UI based on which target platform is desired. I haven't updated the tests here, that will come in a follow-up PR.
-
- 26 Nov, 2019 4 commits
-
-
Dan Field authored
-
Albertus Angga Raharja authored
* Add additional properties callback in Inspector Serialization Delegate * Rename _SerializationDelegate to InspectorSerializationDelegate and add test * Fix indentation * Remove trailing whitespace * Handle case when addAdditionalPropertiesCallback returns null * Improve docs and minor renames * Improve docs * Improve documentation
-
Greg Spencer authored
This adds the ability to scroll and page up/down in a Scrollable using the keyboard. Currently, the macOS bindings use Platform.isMacOS as a check, but we'll switch that to be defaultTargetPlatform == TargetPlatform.macOS once that exists.
-
Dan Field authored
-
- 25 Nov, 2019 2 commits
-
-
Kate Lovett authored
-
Jonah Williams authored
-
- 23 Nov, 2019 1 commit
-
-
Takeshi Tsukamoto authored
-