- 03 Jan, 2018 2 commits
-
-
Mikkel Nygaard Ravn authored
This reverts commit 25b1d43a.
-
Mikkel Nygaard Ravn authored
-
- 21 Dec, 2017 2 commits
-
-
Leaf Petersen authored
Small code changes as part of moving the framework SDK forward to a 2.0 dev version.
-
Greg Spencer authored
This reverts commit 765191e7. because the updated packages cause a gradle build problem.
-
- 20 Dec, 2017 1 commit
-
-
Greg Spencer authored
This adds our self-compiled copy of the MinGit executable (built from the flutter/git repo) to the archive when building an archive for Windows. I also tweaked the internal API for prepare_package.dart so that there's a single entry point to build an archive.
-
- 18 Dec, 2017 1 commit
-
-
Sarah Zakarias authored
-
- 14 Dec, 2017 4 commits
-
-
amirh authored
* flutter update-packages * update plugin registrant for flutter_gallery
-
Mikkel Nygaard Ravn authored
This reverts commit 05d6b08f.
-
Mikkel Nygaard Ravn authored
-
Michael Goderbauer authored
-
- 01 Dec, 2017 1 commit
-
-
Chris Bracken authored
Updates quiver from 0.26.0 to 0.26.2 to pick up strong-mode fixes.
-
- 29 Nov, 2017 1 commit
-
-
Greg Spencer authored
This consolidates all of the non-template .gitignore rules into the top level .gitignore, to ignore common things more broadly, with less maintenance needed for the .gitignore files. Does not touch the templates, so that they still produce needed .gitignores as part of flutter create.
-
- 13 Nov, 2017 1 commit
-
-
Greg Spencer authored
Creates a new (hidden) flutter command 'ide-config' that will create and/or update existing .iml files and some files under the .idea directory, as well as removing existing *.iml files and the .idea directory. It also: * Adds *.iml to the .gitignore * Removes existing .iml files from the repo, and moves them to the packages/flutter_tools/ide_templates/intellij directory. * Adds a flag to ide-config ('--update-templates') that will take any new .iml files in the flutter tree and add them to the existing templates. - If --overwrite is also specified, then all existing templates will also be overwritten with the contents from the flutter tree, and any that have been deleted from the flutter tree will also be removed from the templates. * Added new run configurations for all existing app targets that will now also be automatically added to IntelliJ. * Setting up the environment also includes setting the coding style guidelines and the git VCS. * Note that after this PR lands, Flutter developers will need to run it once to re-create the .iml files and configuration files that have been removed. After this PR lands, .iml files will no longer appear in the untracked files section for git.
-
- 01 Nov, 2017 1 commit
-
-
Chris Bracken authored
-
- 26 Oct, 2017 2 commits
-
- 25 Oct, 2017 1 commit
-
-
Yegor authored
* fix updrade script; upgrade to the latest package versions * exclude special dependencies from transitive closure * fix stack trace handling in flutter_test due to stack_trace change * change type on _emptyStackTrace
-
- 22 Oct, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 20 Oct, 2017 1 commit
-
-
Hans Muller authored
-
- 19 Oct, 2017 1 commit
-
-
Hans Muller authored
-
- 11 Oct, 2017 1 commit
-
-
Hans Muller authored
-
- 06 Oct, 2017 1 commit
-
-
Alexander Aprelev authored
* Force upgrade update packages with improved update process. * Update packages * Revert "Update packages" This reverts commit a37de26d3f4f7f5a15746ff791002625faa3d3c0.
-
- 02 Oct, 2017 1 commit
-
-
gspencergoog authored
* Add framework-side support for system text scale factor. * Rolling engine to e3404b81a53ba3180c7623a6f2190ebb28518f30 Additional changes rolled in with engine change: libtxt: implementation of GetRectsForRange that processes a line at a time - e3404b8 Provide an entropy source to the Dart engine (#4161) - e1aa867 libtxt: search for fallback fonts that can match emoji and CJK characters - 8061df1 Roll skia to e4679fa06a. (#4157) - 267e7a8 Update buildroot to 53fea9aebbcc39c6522731471a1a45960ee0685e (#4160) - 02ea7ae Revert engine Dart roll. (#4158) - 14aab33 Add support for system text scale factor. (#4124) - b2a7f4b Include _http into sky_engine libraries for analyzer (#4154) - b930f10 libtxt: Remove postprocess_line and improve tracking of X offsets - 86f95f0 libtxt: remove redundant line_widths (#4152) - 14bf515 Roll dart to ade37f931e90b0fdb8fe16d6bf6f089545da55b6 (#4151) - 6f1264f
-
- 27 Sep, 2017 1 commit
-
-
Ian Hickson authored
-
- 22 Sep, 2017 1 commit
-
-
Ian Hickson authored
* Pin all dependencies ONCE AND FOR ALL This replaces the secret `flutter update-packages --upgrade` with a destructive `flutter update-packages --force-upgrade` that actually goes and pins every dependency and transitive dependency in every flutter package to the same version. * Add comments.
-
- 21 Sep, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 08 Sep, 2017 1 commit
-
-
Hans Muller authored
* Make an app's supported locales configurable * Added an supportedLocales.isNotEmpty assert * WidgetsApp no longer const because supportedLocales.isNotEmpty * updated per review feedback * tweaked dartdoc to restart the build * updated per review feedback * Updated per review feedback
-
- 28 Aug, 2017 1 commit
-
-
Michael Goderbauer authored
* Semantic hit test order for Slivers * ++ * fix double space * refactoring * fix test * comment fix * tests * remove accidental debugDumpSemanticsTree * review comments * fix button
-
- 24 Aug, 2017 1 commit
-
-
Hans Muller authored
-
- 07 Aug, 2017 1 commit
-
-
Jaime Wren authored
-
- 12 Jul, 2017 1 commit
-
-
Todd Volkert authored
* requires bumping `process` to a version that has relaxed version restrictions on `intl` https://github.com/flutter/flutter/issues/10650
-
- 29 Jun, 2017 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 23 Jun, 2017 1 commit
-
-
Ian Hickson authored
The main purpose of this PR is to make it so that when you set the initial route and it's a hierarchical route (e.g. `/a/b/c`), it implies multiple pushes, one for each step of the route (so in that case, `/`, `/a`, `/a/b`, and `/a/b/c`, in that order). If any of those routes don't exist, it falls back to '/'. As part of doing that, I: * Changed the default for MaterialApp.initialRoute to honor the actual initial route. * Added a MaterialApp.onUnknownRoute for handling bad routes. * Added a feature to flutter_driver that allows the host test script and the device test app to communicate. * Added a test to make sure `flutter drive --route` works. (Hopefully that will also prove `flutter run --route` works, though this isn't testing the `flutter` tool's side of that. My main concern is over whether the engine side works.) * Fixed `flutter drive` to output the right target file name. * Changed how the stocks app represents its data, so that we can show a page for a stock before we know if it exists. * Made it possible to show a stock page that doesn't exist. It shows a progress indicator if we're loading the data, or else shows a message saying it doesn't exist. * Changed the pathing structure of routes in stocks to work more sanely. * Made search in the stocks app actually work (before it only worked if we happened to accidentally trigger a rebuild). Added a test. * Replaced some custom code in the stocks app with a BackButton. * Added a "color" feature to BackButton to support the stocks use case. * Spaced out the ErrorWidget text a bit more. * Added `RouteSettings.copyWith`, which I ended up not using. * Improved the error messages around routing. While I was in some files I made a few formatting fixes, fixed some code health issues, and also removed `flaky: true` from some devicelab tests that have been stable for a while. Also added some documentation here and there.
-
- 20 Jun, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 07 Jun, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 29 May, 2017 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 22 May, 2017 1 commit
-
-
Hans Muller authored
-
- 19 May, 2017 1 commit
-
-
Chris Bracken authored
Under android/ directory, ignore: GeneratedPluginRegistrant.java Under ios/ directory, ignore: GeneratedPluginRegistrant.h GeneratedPluginRegistrant.m Pods/
-
- 15 May, 2017 1 commit
-
-
Ian Hickson authored
Requires https://github.com/flutter/engine/pull/3688
-
- 09 May, 2017 1 commit
-
-
Michael Thomsen authored
* Roll android build tools to 25.0.3 * Roll android build tools to 25.0.3 in templates
-