- 22 Jun, 2018 1 commit
-
-
Jonah Williams authored
-
- 20 Jun, 2018 1 commit
-
-
Natalie Sampsell authored
-
- 19 Jun, 2018 1 commit
-
-
Greg Spencer authored
-
- 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.
-
- 08 Jun, 2018 1 commit
-
-
Jonah Williams authored
-
- 06 Jun, 2018 1 commit
-
-
Edman P. Anjos authored
* Surface border parameter in CupertinoSliverNavigationBar (#18152) * Add tests for CupertinoSliverNavigationBar border * Remove unused keys, find by descendant
-
- 05 Jun, 2018 2 commits
-
-
xster authored
-
Alexandre Ardhuin authored
-
- 01 Jun, 2018 1 commit
-
-
matthew-carroll authored
-
- 30 May, 2018 2 commits
-
-
Greg Spencer authored
Revert "Update typedef syntax to use Function notation and turn on lint for old notation. (#18035)" (#18041) This reverts commit 32586020.
-
Greg Spencer authored
Fixes #18028 Just changes typedef declarations, no logic changes.
-
- 18 May, 2018 4 commits
-
-
Christopher Araüjo authored
This is a follow up on issue #17169 and the pull request #17298 This pull request adds the onChangeStart and onChangeEnd callbacks for CupertinoSlider. These are called when a user starts and ends a change respectively. Pushing for @dcaraujo0872, the PR author.
-
xster authored
-
Greg Spencer authored
Our style guide says the k's are not necessary, and it seems like a good idea to make all the code be consistent on this. Only naming changes to private vars: no logic changes.
-
Greg Spencer authored
This replaces abandoned PR #14824 by @ekbiker, and gives it some love.
-
- 17 May, 2018 1 commit
-
-
Noam Drong authored
-
- 15 May, 2018 1 commit
-
-
Todd Volkert authored
1. Make CupertinoSwitch use BoxShadow.toPaint() so that it respects the `debugDisableShadows` flag. 2. Increase blue radius on debug banner 3. Only stroke "synthetic shadow" borders if elevation is positive.
-
- 11 May, 2018 1 commit
-
-
xster authored
-
- 10 May, 2018 2 commits
-
-
Jonah Williams authored
-
Hans Muller authored
-
- 03 May, 2018 1 commit
-
-
Konstantin Scheglov authored
-
- 27 Apr, 2018 1 commit
-
-
xster authored
-
- 20 Apr, 2018 1 commit
-
-
Jonah Williams authored
Semantics object support for edge triggered semantics
-
- 02 Apr, 2018 1 commit
-
-
xster authored
* Let CupertinoTabScaffold's tab be programmatically selectable * Re-use the tab bar's index instead * review
-
- 23 Mar, 2018 1 commit
-
-
xster authored
* Add more doc linking the material and cupertino refresh controls * review
-
- 22 Mar, 2018 2 commits
-
-
Ian Hickson authored
This is not a grand refactor yet, it's just cleaning up what we have already, so that people who keep using this API (e.g. dialogs) have something coherent to deal with. The major changes are that Navigator and NavigatorState have the same API now, that most of the examples use `<void>` instead of `<Null>`, that the navigator observer can see replaces, and that the `settings` is moved from ModalRoute to Route. I also cleaned up some of the API documentation.
-
xster authored
* Gallery scaffolding * Started RenderSliver * demo and initial hookup * Cleaned up demo more and scaffolding basic sliver->widget communication structure. * works * states and default indicator building works * start adding docs * added an alignment setting optimized the sliver relayout mechanism * tested a default bottom aligned sized indicator * Added a bunch of tests * more fixes and more tests * Finished the tests * Add docs * Add more doc diffing wrt material pull to refresh * Mention nav bar synergy * add more asserts * review 1 * Fix mockito 2 / dart 2 / strong typed tests * review * Remove the vscode config * review
-
- 20 Mar, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 12 Mar, 2018 1 commit
-
-
Jason Simmons authored
-
- 06 Mar, 2018 1 commit
-
-
xster authored
* Add selection haptic feedback to Cupertino Pickers * review * don't haptic on android
-
- 21 Feb, 2018 1 commit
-
-
xster authored
* Fix focus switching when changing tabs in CupertinoTabScaffold * review * Test focuses are saved within tabs * review
-
- 16 Feb, 2018 1 commit
-
-
Alexandre Ardhuin authored
* fix potential call on null * review
-
- 15 Feb, 2018 1 commit
-
-
Ian Hickson authored
-
- 05 Feb, 2018 1 commit
-
-
Volodymyr Lykhonis authored
- Add override of border color of CupertinoNavigationBar - Add background color to CupertinoPageScaffold
-
- 02 Feb, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 31 Jan, 2018 2 commits
-
-
Michael Goderbauer authored
With a little refactor and unification of how availability of copy/cut/paste is determined across platforms. Minor remaining issue: https://github.com/flutter/flutter/issues/14331. Fixes https://github.com/flutter/flutter/issues/13501.
-
Greg Spencer authored
This updates the CupertinoAlertDialog to respect text scale factor more properly. Before this, it would scale, but would clip the action buttons at large scales, and would draw in the safe area. It also didn't match the iOS alert because the content didn't scroll. Now it does those properly. I didn't address the fact that buttons should lay out properly (Issue #14345), but that's probably pretty low priority. Fixes #12484
-
- 26 Jan, 2018 1 commit
-
-
xster authored
* controller, position and test * Make controllers swappable * WIP * Create a ListWheelScrollPhysics * Created picker and gallery demo and testing now * Works. Ready to document and test. * Document and add tests. Make the scroll controller more generic. * minor cleanup * review * review * fix tests * stop using TransformLayers for now
-
- 25 Jan, 2018 1 commit
-
-
Alexandre Ardhuin authored
-