- Fixes#1899 - Don't use BuildContext in async.
- Disabled build script for `next-gen-ui-demo` for master channel
because dependency gap does not compile.
- Improve use BuildContext in `place_tracker`, added checks to verify
that the context is still mounted, and avoid passing BuildContext as
parameter.
## Pre-launch Checklist
- [ ] I read the [Flutter Style Guide] _recently_, and have followed its
advice.
- [ ] I signed the [CLA].
- [ ] I read the [Contributors Guide].
- [ ] I updated/added relevant documentation (doc comments with `///`).
- [ ] All existing and new tests are passing.
If you need help, consider asking for advice on the #hackers-devrel
channel on [Discord].
<!-- Links -->
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[CLA]: https://cla.developers.google.com/
[Discord]: https://github.com/flutter/flutter/wiki/Chat
[Contributors Guide]:
https://github.com/flutter/samples/blob/main/CONTRIBUTING.md
## Pre-launch Checklist
- [x] I read the [Flutter Style Guide] _recently_, and have followed its
advice.
- [x] I signed the [CLA].
- [x] I read the [Contributors Guide].
- [x] I updated/added relevant documentation (doc comments with `///`).
- [ ] All existing and new tests are passing.
---------
Co-authored-by: David Iglesias <ditman@gmail.com>
Co-authored-by: Mark Thompson <2554588+MarkTechson@users.noreply.github.com>
Co-authored-by: John Ryan <ryjohn@google.com>
* add thumbnails to the books example to make memory leaks easier to test
* also add profile build
* migrate material 3 demo code to avoid warning
* Revert "migrate material 3 demo code to avoid warning"
This reverts commit 7df37d9f65.
* fix lints in various packages
* DoNothingAndStopPropagationIntent const conflicts between stable and beta, add lint ignore for now
* enable web for place_tracker
* add place_tracker symlink
* add generated_plugin_registrant.dart
* update google_maps_flutter_web to fix pins not showing
* add place_tracker to peanut.yaml
* upgrade place_tracker dep
* use a 32 pixel square
* Apply zoom to selected category when the PlaceMapState updates. This fixes a grey screen issue in web, after saving a place.
* pub upgrade
* run pub upgrade
* use published versions of packages
* remove lib/generated_plugin_registrant.dart
* add newline
* add web API key to README
Co-authored-by: David Iglesias Teixeira <ditman@gmail.com>
* format place_tracker README
* update sentence in README
* sort Dart members, remove unnecessary type declarations
* Run place_tracker on Android and iOS, update project files
* add link to developer preview caveat
* grammar
* update MAINTENANCE
The current Travis script will only print offending files, but won’t fail the build. Added `--set-exit-if-changed` to fix that.
Also, simplified the call from using `grep` and `xargs` to simple `flutter format .`, which recurses directories.
Lastly, fixed offending files that needed `dartfmt`. (But not in the directories that aren’t covered by `travis_script.sh`.
* Add list view to place tracker. Note: map in listTile is not WAI in this commit.
* Remove map from list tiles. Make list tiles tappable (currently editing a place and saving will do nothing if the details screen is pushed from the list view.
* Fix text alignment in list.
* Initial implementation of using an InheritedWidget to maintain data between list and map. Map does not update correctly at this point.
* Use AppModel.update to set the AppState. Add MapConfiguration class to handle map changes based on AppState.
* Don't cache AppState - lookup directly. Extract AppState code into it's own file and add static methods. Address comments from Hans.
* Extract generic AppModel code.