Serj Elokhin
Serj Elokhin
iOS version 17.0 Permission is successfully granted. No data is coming while listening the stream. No any error is receiving. ```dart final rawStream = MicStream.microphone( audioSource: AudioSource.DEFAULT, sampleRate: 48000, channelConfig:...
By the issue #286 - extra digital country code in the formatted number, - getRegionInfoFromPhoneNumber crashes on iOS platform.
How can I set LUA_PATH for launching program? I want something like that: ``` { "type": "lrdb", "request": "launch", "useInternalLua": false, "name": "Run tests", "program": "${workspaceRoot}/bin/lua_run", "args": ["data/tests/main.lua"], "sourceRoot": "${workspaceRoot}",...
When picking the file with filter by extension, it allow to choose any file regardless of the extension. And when you pick the file with unsupported extension, `flutter_file_dialog` just crashes...
It's related to #10. New versions of Emscripten declares the `Model.asm` as deprecated and generates the getter `asm` which aborts with corresponding message: ```javascript legacyModuleProp('asm', 'wasmExports'); ... function legacyModuleProp(prop, newName,...
`asm` is obsolete, please use `wasmExports` in the `EmscriptenModule._fromJs`. Of course, you can support legacy emscripten by writing `Object? exports = module.wasmExports ?? module.asm;` Thanks!
Hello! Could you help me with structs? I have a function like that ``` struct Offset2D { double x; double y; }; struct Offset2D createOffset2D(double x, double y); ``` How...
You use `SvgCacheKey` that has `keyData` which is `SvgNetworkLoader`. 1. Implement `operator==` and `hashCode` for ColorMapper (actually there is only `TestColorMapper` yet). 2. Fix calculating `hashCode` and comparing the `SvgNetworkLoader.headers`...
Hi! You use `vg.loadPicture` in the `_loadAsync` method and you must call `Picture.dispose` when you are done with the `pictureInfo.picture`. But I don't see in your code any mention of...
When `includePrefixMatches` is turned on in the config ```dart routerConfig: router.config( includePrefixMatches: true, ), ``` `auto_route ` doesn't respond to changing the url path or pushing `back`/`forward` buttons of the...