luckysmg

Results 61 comments of luckysmg

> It's my experience that you will have this jank when conected to devtools in profile mode, the engine is held up while sending diagnostic data to devtools. I came...

When app is moved from bg to fg, Seems like this https://github.com/flutter/flutter/issues/96381#issuecomment-1186215653

I think the rebuild is expected. Because when keyboard changes, the `MediaQuery` change signal will be sent every frame when keyboard height changes. And because of this, we will have...

I think should keep the rebuild inside the scaffold.... We should notice all places using `MediaQuery.of(context)` Or use `Builder` widget to keep build area small as possible ```dart class TextFieldPage...

[flutter-intellij.zip](https://github.com/flutter/flutter-intellij/files/14431146/flutter-intellij.zip) Here is the plugin that seems works fine. Everybody can take this and install from disk to fallback

The version of the zip I uploaded should be version `77.1.2`

Emm seems 78.2.x still have issue... ![image](https://github.com/flutter/flutter-intellij/assets/49340347/23b7d032-e42f-431e-b503-86a4f99cfd7a) https://github.com/flutter/flutter-intellij/assets/49340347/3e6ea80d-c86a-40dd-b4dd-8e07e3139db0 ``` Cannot invoke "org.dartlang.vm.service.element.InstanceRef.getType()" because "instanceRef" is null Cannot invoke "org.dartlang.vm.service.element.InstanceRef.getType()" because "instanceRef" is null ```

@csukuangfj 作者你好,但是我看到在的`c-api.h`,`cxx-api.h` 中并没有找到相关 api(我理解上层应该用的是这个吧^_^), 但我在`csrc`里面才找到了提到的`OfflineSourceSeparationConfig`API,但在编译脚本里面貌似没有把这部分放进去(我用的`build-ios-shared.sh`),这个是操作不对吗