Results 17 comments of xkeyC

> @xkeyC 浏览器的 wasm 我记得没法直接走底层网络的,必须要走 js 中转一层,可以给指一个文档看一下么? 确实,我把 wasm32 运行时 和 浏览器的 wasm 搞混了,是我搞错了,不好意思

👍 That's a great update, which allows us to use JetBrains Community Edition IDEs for coding, as not everyone needs Android support (they can try Android Studio for that).

在尝试完善某个功能是发现了这个问题,问题出在 DefaultAssetPickerProvider().getPaths(): ``` // Use sync method to avoid unnecessary wait. _paths ..forEach(getAssetCountFromPath) ..forEach(getThumbnailFromPath); ``` 但是 getAssetCountFromPath 和 getThumbnailFromPath 包含异步代码,DefaultAssetPickerProvider 初始化时连续调用了两个 getPaths,存在 "线程安全" 问题。 ``` { Singleton.sortPathDelegate = sortPathDelegate ??...

Same issue. I noticed the previous report (https://github.com/flutter/flutter/issues/175135) has been fixed, but I feel like things are getting worse. This is likely caused by thread merging. Here's a solution I'll...

I use a dual-mode 4K 160Hz / 1080p 320Hz monitor with FreeSync (running on nvidia G-Sync compatible mode). Because my product is aimed at gamers, the frame rate drop has...

Http3 servers should have `alt-svc: h3=":443"; ma=xxxx` header. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Alt-Svc . The client should use this header after the first http1/http2 request to determine whether it should try http3?

I encountered a similar problem, here is my solution: ### Copy flutter/src/widgets/drag_target.dart to project ``` dart // Add a Controller to manually trigger hitTest class DraggableController { _DragAvatar? _dragAvatar; void...