- 27 Jan, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 09 Dec, 2020 1 commit
-
-
David Martos authored
-
- 05 Nov, 2020 1 commit
-
-
LongCatIsLooong authored
-
- 28 Oct, 2020 2 commits
-
-
Per Classon authored
Add side property to Chips, and resolve it and the state of Chips to be MaterialState aware (#68596)
-
Anurag Roy authored
-
- 07 Oct, 2020 1 commit
-
-
Darren Austin authored
Migrate Material framework tests to null safety.
-
- 31 Aug, 2020 1 commit
-
-
Chris Bracken authored
Flutter's `moreOrLessEquals` has a few advantages over `closeTo` from the `matcher` package: * It emits the epsilon value in the test result on failure. * It uses a named parameter for epsilon, which improves readability at the call site. * It has a reasonable default for epsilon in cases where something more specific isn't required. Using it also has the nice property that it aids in its own discovery when when people go looking for such functionality in new tests. This change also includes a couple unrelated whitespace formatting cleanups.
-
- 10 Jul, 2020 1 commit
-
-
Nolan Scobie authored
-
- 01 Jul, 2020 1 commit
-
-
gaaclarke authored
-
- 26 Jun, 2020 1 commit
-
-
Nolan Scobie authored
-
- 24 Jun, 2020 1 commit
-
-
chunhtai authored
* Add semantics sort key for modal scope and modal barrier * fix test * fix test * fix test * fix space * fix more tests * addressing comments
-
- 18 Jun, 2020 1 commit
-
-
Jose Alba authored
-
- 11 Jun, 2020 1 commit
-
-
Alexandre Ardhuin authored
* add language version 2.8 in packages/flutter * enable non-nullable analyzer flag
-
- 22 Apr, 2020 1 commit
-
-
Kate Lovett authored
-
- 16 Jan, 2020 1 commit
-
-
Anthony authored
-
- 18 Dec, 2019 2 commits
-
-
Michael Goderbauer authored
-
Michael Goderbauer authored
-
- 16 Dec, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 06 Dec, 2019 1 commit
-
-
Greg Spencer authored
This adds a visualDensity attribute to checkbox, radio, icon button, and chip.
-
- 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
-
- 31 Oct, 2019 1 commit
-
-
Greg Spencer authored
Makes sure that disabled InkWell/InkResponse and widgets that use them don't allow themselves to be focused. ListTile, PopupMenu, and Stepper were not setting canRequestFocus properly on the InkWell, and InkWell was allowing focus even if it was disabled (it was basically just relying on the containing widget to set canRequestFocus properly). Now InkWell must both be enabled (have an onTap or similar) and have canRequestFocus set to true.
-
- 24 Oct, 2019 2 commits
-
-
Jonah Williams authored
Revert "[Chip] Make sure InkResponse is in the foreground on delete for chips with background color (#41463)" (#43391) This reverts commit 588275e1.
-
Per Classon authored
[Chip] Make sure InkResponse is in the foreground on delete for chips with background color (#41463) * Make sure InkResponse is visible on delete for chips with background color set * Override computeDistanceToActualBaseline in layout builder
-
- 23 Oct, 2019 1 commit
-
-
Tianguang authored
* Fixed chip ripple. * Fixed chip ripple. All tests passed. * Fix one minor detail. * Fixed reference box. * Playing around 2. * Added tests for chip ripple. * Reverting print-debugging statements * Remove extra blank line. * Fixed chip ripple. * Remove commented code. * Reconciles with upstream/master. * Remove print-debugging statement. * Remove empty line. * Edit comments. * Edit style and comments. * Edit style. * Fix style and capitalization. * Return bool. * Edit style. * Use getMaterialBox instead of Material.of(...). * Experiment 3. * Revert. * Using tester.pump instead of pumpFrames * Delete pumpFrames. * Edit comments.
-
- 09 Oct, 2019 1 commit
-
-
Greg Spencer authored
This adds a Semantics node to the Focus and FocusScope widgets, setting the focused and focusable attributes so that the accessibility subsystem can be told when a control has the input focus. Includes an engine roll to flutter/engine@77252d2, and the following 8 engine changes: flutter/engine@77252d2 Greg Spencer Add missing focusable testing info (flutter/engine#13013) flutter/engine@0e42a29 skia-flutter-.. Roll src/third_party/skia 54548626a977..e27a503a0a21 (1 commits) (flutter/engine#13024) flutter/engine@6b56ed7 gaaclarke Refactor: FlutterDartProject (flutter/engine#13006) flutter/engine@393480c skia-flutter-.. Roll src/third_party/skia 77dde599c98a..54548626a977 (1 commits) (flutter/engine#13023) flutter/engine@080b89d skia-flutter-.. Roll src/third_party/skia 2b1a25a4d324..77dde599c98a (1 commits) (flutter/engine#13021) flutter/engine@90b0f30 Ben Konyi Roll src/third_party/dart f4a72bfc64..bb04f145b2 (18 commits) (flutter/engine#13020) flutter/engine@049fb89 skia-flutter-.. Roll fuchsia/sdk/core/linux-amd64 from q_uYX... to cknsi... (flutter/engine#13019) flutter/engine@6925b2a skia-flutter-.. Roll fuchsia/sdk/core/mac-amd64 from wuAtw... to u0JpE... (flutter/engine#13018) Related Issues Addresses #40101 Landing on red in order to fix the build: it's red because of the needed engine roll.
-
- 30 Sep, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add missing trailing commas * add more missing trailing commas * add more and more missing trailing commas
-
- 24 Sep, 2019 2 commits
-
-
Alexandre Ardhuin authored
-
Alexandre Ardhuin authored
-
- 17 Sep, 2019 1 commit
-
-
Anthony authored
Add the option to configure a chip check mark color
-
- 03 Sep, 2019 1 commit
-
-
Greg Spencer authored
This changes the behavior of text fields, Material buttons, and Chips so that if they are disabled they lose focus. Before this change, it was possible to disable a control and then use focus traversal to reach it anyhow, and in the case of text fields, enter text into a disabled field. Fixes #33985
-
- 13 Aug, 2019 1 commit
-
-
MH Johnson authored
-
- 03 Aug, 2019 1 commit
-
-
MH Johnson authored
* Chip keeps track of state, resolves text color
-
- 13 Jun, 2019 1 commit
-
-
Jonah Williams authored
-
- 01 May, 2019 1 commit
-
-
Shi-Hao Hong authored
* Add horizontal padding and properly constrain chip label calculations * Added regression test for avatar, label and delete icon constraint
-
- 09 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 07 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
* fix indentof statements in BlockFunctionBody * fix indentof statements in BlockFunctionBody in tests
-
- 01 Mar, 2019 2 commits
-
-
ocavue authored
-
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
-
- 22 Feb, 2019 1 commit
-
-
rami-a authored
[Material] Add ability to set shadow color and selected shadow color for chips and for chip themes (#28163) * Add ability to set shadow color for chips and for chip themes * Add selected shadow color as a property as well * Update phrasing of documentation * Address PR feedback
-
- 21 Feb, 2019 1 commit
-
-
Alexandre Ardhuin authored
-