The most recent Flutter IntelliJ plugin replaces FLUTTER_MODULE with
WEB_MODULE and eliminates the exclusion of packages/ directories.
Use of the packages/ directory was turned off by default months ago, and
is replaced by the .packages file.
* Adds more customization options to the Chip widget
Includes:
- Custom Tooltip message for the delete button;
- Custom background color for the chip
- Custom delete icon color
- Custom label text style
* Adds missing type annotations to tests and improves documentation.
* Tweaks labelStyle field documentation
It was previously possible for event dispatch to occurr during the
brief window where the tree had been marked dirty but before it had
been relaid out by reassemble, which would cause assertions to fire if
someone did a hot reload while touching the device.
* Do not schedule animation if already at the target value
* Partially fixes https://github.com/flutter/flutter/issues/11495.
* Also includes a fix for Cupertino button to always run the tap animation even if the finger is immediately lifted from the screen (uncovered by a test failure).
* refactorings
* more tests
* test clearifications
* remove Listener
* fix lints
* fix async issue
In a Travis environment, the test package is exiting the process after
completing the tests.
See dart-lang/test@d1057c4
The flutter test command calls the test package's main() and then expects to
do other work afterward. The exit prevents flutter test from writing the
new coverage results, causing the coveralls tool to run against an old
lcov.info file.
* FadeInImage: shows a placeholder while loading then fades in
* fix dartdoc quotes
* license headers; imports
* use ImageProvider; docs; constructors
* _resolveImage when placeholder changes
* address comments
* docs re ImageProvider changes; unsubscribe from placeholder
* rebase
* address comments
* PopupMenuButton: create IconButton if child is Icon
Otherwise the resulting button has an abnormally small and rectangular
area. With multiple PopupMenuButton(child: Icon) they get squished
together in the AppBar.
* Add separate icon argument to PopupMenuButton
* Fix style issues and tweak dartdocs
* Add tests for icon argument to PopupMenuButton
* Group icon tests and fix broken test, analyzer warnings
* Test that the correct custom icon is present
* Apply De Morgan's to work around dart analyzer bug
see: https://github.com/dart-lang/sdk/issues/30288
* Revert "Make plugins add their repos to projects in the consuming app (#11447)"
This reverts commit abe1e2520bb117c3de06cd3c44ad2a8250000de8.
* Revert "Support for custom build types on Android (#11354)"
This reverts commit 87eec719e20dd1423891a851d94b504b2453bf29.
* Revert "add a profile() method (#11443)"
This reverts commit 561d17a87606f8cf118b57bfacccb1acf6b9b594.
* Revert "Fix documentation based on dartdoc's warnings (#11428)"
This reverts commit 6655074b370d39150d2ed28f67851e3bce7013ab.
* Revert "Improve some docs around WillPopScope. (#11429)"
This reverts commit 58a28a296579b39360cbbb4a5f8b4b575eeb218b.
* Revert "temporarily disable broken driver test in integration_ui (#11440)"
This reverts commit 764515ec780421272de40b6b6c399497a1b38876.
* Revert "style fix"
This reverts commit 00bfc86630661edbd670b7c473fe07b11c6eee7a.
* Revert "tests for waitFor/waitForAbsent"
This reverts commit 31d2ee9c0cf259bc607bfbcaf112d4b8c2c360c1.
* Revert "Always evaluate the finder in `driver.waitFor()` and `driver.waitForAbsent()`"
This reverts commit 11d7c79b9902f960e9541f9f7da2f8857e4aaef4.
* fire service protocol extension events for frames
* start time in micros
* introduce a profile() function; only send frame events when in profile (or debug) modes
* moved the profile() function to foundation/profile.dart
* refactor to make the change more testable; test the change
* fire service protocol events by listening to onFrameInfo
* remove the frame event stream; add a devicelab test
* remove a todo
* final
The output location of gen_snapshot differs based on the engine's target
platform, and we don't know the target platform when building a
platform-independent FLX in JIT mode.
It was 8.0. It's now arbitrarily 18.0.
Changing this required adjusting some tests. Adjusting the tests
required debugging the tests. Debugging the tests required some tools
to help debugging gesture recognizers and gesture arenas, so I added
some. It also required updating some toString() methods which resulted
in some changes to the tree diagnostics logic.
Also I cleaned up some docs while I was at it.