- 09 Jan, 2019 1 commit
-
-
jslavitz authored
* the onStart callback will report the location of the pointer where it wins the gesture arena by default instead of the pointer down location. Fixes all tests related to changing this default value.
-
- 08 Jan, 2019 2 commits
-
-
Michael Goderbauer authored
-
- 07 Jan, 2019 1 commit
-
-
jslavitz authored
* Adds start behavior option to the drag gesture recognizer and makes it the default option when a drag gesture recognizer is created. Also fixes all the tests to work correctly with the new default behavior.
-
- 04 Jan, 2019 1 commit
-
-
Michael Goderbauer authored
-
- 12 Dec, 2018 1 commit
-
-
Trevor Wang authored
-
- 07 Nov, 2018 1 commit
-
-
Michael Beckler authored
Should fix #22226. Code introduced in #20890 caused a regression that broke color flooding animations in a BottomNavigationBar that has BottomNavigationBarType.shifting. The original issue (#19653) dealt with background color changes not occurring until another tab was selected. The result is that the background color instantly changes whenever the state changes and when the widget changes, instead of allowing a new widget to animate the background color change.
-
- 06 Nov, 2018 1 commit
-
-
Jonah Williams authored
-
- 16 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
* Future<void> main * Future<void>.delayed * prefer_void_to_Null * address review comments
-
- 10 Oct, 2018 1 commit
-
-
Hans Muller authored
ButtonThemeData no longer requires a colorScheme. If colorScheme is null, ButtonTheme.of() will initialize it from the current Theme.
-
- 08 Oct, 2018 2 commits
-
-
Hans Muller authored
* Update uses of ButtonTheme.bar * updated gallery themes * Remove unnecessary const Fixes #22789
-
Hans Muller authored
-
- 02 Oct, 2018 1 commit
-
-
mockturtl authored
* use RadioListTile in expansion panels demo Fixes #6048. - expose `_Location` - appease analyzer
-
- 01 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 28 Sep, 2018 1 commit
-
-
xster authored
-
- 23 Sep, 2018 1 commit
-
-
Ian Hickson authored
-
- 14 Sep, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 12 Sep, 2018 2 commits
-
-
Jonah Williams authored
-
Alexandre Ardhuin authored
* enable lint unnecessary_new * fix tests * fix tests * fix tests
-
- 28 Aug, 2018 1 commit
-
-
Ian Hickson authored
-
- 23 Aug, 2018 1 commit
-
-
Jonah Williams authored
-
- 22 Aug, 2018 1 commit
-
-
Will Larche authored
* [Gallery] Elevations demo. TODO: Correct icon. * [Gallery] More elevations for the elevation demo. * [Gallery] Elevation toggle for elevation demo. * [Demos] Update temp icon on elevations demo. * [Demos] Changing action icon. * [Demos] Same. * [Demos] Adding new and const. * [Demos] Reverting formatting. * [Gallery] PR Feedback.
-
- 18 Aug, 2018 1 commit
-
-
Ian Hickson authored
* Fixes resulting from audit of issues links I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link. * Update run_test.dart skip this test again since it failed on linux and macos bots
-
- 16 Aug, 2018 2 commits
- 04 Aug, 2018 1 commit
-
-
Jonah Williams authored
-
- 02 Aug, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 30 Jul, 2018 2 commits
-
-
David Shuckerow authored
-
Michael Goderbauer authored
-
- 27 Jul, 2018 1 commit
-
-
Todd Volkert authored
It was causing problems rolling Flutter into Fuchsia
-
- 23 Jul, 2018 1 commit
-
-
Alexandre Ardhuin authored
* re-enable lint unnecessary_const * remove trailling whitespaces * remove unnecessary const (after merge)
-
- 20 Jul, 2018 2 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
- 16 Jul, 2018 2 commits
-
-
Ian Hickson authored
This reverts commit cc1cf13e.
-
Alexandre Ardhuin authored
-
- 21 Jun, 2018 1 commit
-
-
amirh authored
Move the notch computation from the FAB to the BAB. The notch in the BAB (bottom action bar) for the FAB (floating action button) was previously kept as part of the FAB's implementation. This was done to keep the shape of the FAB and the shape of the notch coupled. That approach resulted in a somewhat complex and 'non Fluttery' mechanism for propagating the notch computation from the FAB to the BAB. This CL uncouples the FAB and the notch computation. With the new API the BAB computes its overall shape including the notch using a NotchedShape delegate. This includes multiple breaking changes: * Scaffold.setFloatingActionButtonNotchFor is deleted. * The ComputeNotch type is deleted. * The hasNotch property of BottomAppBar is deleted. * The notchMargin property of FloatingActionButton is deleted. Quick migration guide from the previous API: | Previous API | New API | | ------------------|-------------| | BottomAppBar(hasNotch: false) | BottomAppBar() | | Using a FloatingActionButton with: BottomAppBar() / BottomAppBar(hasNotch: true) | BottomAppBar(shape: CircularNotchedRectangle()) | | Scaffold.setFloatingActionButtonNotchFor(..) | No longer supported |
-
- 19 Jun, 2018 1 commit
-
-
Greg Spencer authored
This adds an HSLColor class which uses a perceptual color space based upon human perception of colored light (as opposed to HSV, which is based on pigment colors). You can see the difference in the color spaces here: https://en.wikipedia.org/wiki/HSL_and_HSV I also added a "within" matcher for both HSLColor and HSVColor that will check if the (floating point) color components are within a certain error. And tests.
-
- 13 Jun, 2018 1 commit
-
-
Chris Bracken authored
fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly from source, flutter_platform.dart automatically runs a kernel compile when operating in Dart 2 mode, but this assumes a functional Dart SDK is available in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts directory with an empty temp dir. Remaining work is: 1. Get the frontend server building as a dependency on Fuchsia. 2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server. This also reverts migration to Dart 2 typedef syntax. This reverts commit 6c56bb24. (#18362) This reverts commit 3daebd05. (#18316)
-
- 11 Jun, 2018 1 commit
-
-
Greg Spencer authored
Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax. Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml. No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
-
- 10 Jun, 2018 1 commit
-
-
Mehmet Fidanboylu authored
-