Jonathan Böcker
Jonathan Böcker
When hot reloading I get this error: ``` lib/main.dart:18:27: Error: The argument type 'void Function(USBDevice)' can't be assigned to the parameter type 'void Function(JavaScriptObject)'. - 'USBDevice' is from 'package:js_demonstration/other.dart' ('lib/other.dart')....
*Description of changes:* Further development of #17, but with null safety
This is a breaking change due to the removal of `InvocationResult`, as `requestId` is handled by the `Runtime`. *Description of changes:* - Allow multiple handlers by fetching correct name from...
Running the example on Ubuntu 22.10 with Flutter `3.7.0-1.2.pre` gives this error on startup: ``` ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY╞═══════════════════════════════════════════════════════════ The following SerialPortError was thrown building Builder(dirty): Invalid argument,...
The build target `pca10059` aka [nRF52840 Dongle](https://www.nordicsemi.com/Products/Development-hardware/nRF52840-Dongle) does not compile the [NUS server example](https://github.com/tinygo-org/bluetooth/blob/release/examples/nusserver/main.go). I get the following error: ```bash tinygo build -target=pca10059 -o flash.hex ./main.go # tinygo.org/x/bluetooth ../../go/pkg/mod/tinygo.org/x/[email protected]/gap.go:80:10: undefined:...
In Chrome devtools there is a sub-tab for inspecting websocket frames:  This is not present when inspecting with flutter_stetho:  If it is possible, this would be an excellent...
Given examples in README does not work in `lokalise2` v2.6.8: https://github.com/lokalise/lokalise-cli-2-go/blob/604673f0b9bdb4faf1e94fe77a0b5ceb249f4c6c/README.md?plain=1#L96-L101 Following error is thrown: ``` Error: unknown command "" for "lokalise2" Run 'lokalise2 --help' for usage. ``` Following command...
When setting a scope with target audience like this ```dart final client = await clientViaServiceAccount(credentials, ['IAP_CLIENT_ID.apps.googleusercontent.com']); ``` `JwtFlow.run()` fails with ``` Exception: Unable to obtain credentials. Invalid response from server....
From `Credential` documentation: ``` /// The **`Credential`** interface of the /// [Credential Management API](https://developer.mozilla.org/en-US/docs/Web/API/Credential_Management_API) /// provides information about an entity (usually a user) normally as a /// prerequisite to a...
In 1.0.0, some `SubtleCrypto` methods have untyped parameters, thus making them hard to use: E.g. `importKey()`: Before 1.0.0, it was possible to figure out and pass `KeyAlgorithm(name: 'AES-GCM')` as the...