Kevin Moore
Kevin Moore
- [ ] get (required by `get_storage`) - [ ] get_storage - see https://github.com/flutter/gallery/issues/1025 - [ ] url_launcher_web - migration complete in a branch. Waiting for next stable to land!...
### Description `get_storage` depends on `get` – which is BIG. It also makes support wasm tricky! I think the only issue is that `shared_preferences` is async. I hope this is...
### Page URL https://docs.flutter.dev/platform-integration/web/wasm ### Page source _No response_ ### Describe the problem Should mention the new js_interop and pkg:web work and how that's needed to allow Flutter web apps...
See https://pub.dev/packages/peanut https://medium.com/@kevmoo/show-off-your-flutter-dart-web-app-with-peanut-c0307f2b733c
- feat(gcp): current region methods - region hacking generalization
Maybe make a gcp_test package or similar? LOTS of duplicated code throughout this project!
Required to support compilation to wasm - [x] Migrate pkg:devtools_app_shared - WIP - https://github.com/flutter/devtools/pull/6626 - [ ] Migrate pkg:devtools_app - [x] Update flutter/tests to use latest devtools - https://github.com/flutter/tests/pull/311 -...
## Description When providing optional arguments to `package:test` functions that take functions (like `test` and `group`) supply the named arguments _before_ the function block. ## Details When the test/group "body"...
Often if you're in a try block, you want to catch exceptions. But if you omit the `await` errors might flow through. See https://dartpad.dev/c8deb87cee33b48316fc0f5cf4b1891f ```dart Future main() async { for...