rainy liu

Results 110 comments of rainy liu

Hi, @martinjm97 Well, after working for some time, I used some hacking techniques to implement it on python version >=3.9, for 3.8 and former, the best solution seems to be...

> Ideally, there'd be a test case then ensures that TapIgnore typed arguments cannot be provided on the command line. As for this, I find it had been solved. For...

Well, the codes you provided above won't work in VSCode. ```python T = TypeVar('T') TapIgnore: TypeAlias = ClassVar[T] TapIgnore._name = 'TapIgnore' ``` ![image](https://github.com/swansonk14/typed-argument-parser/assets/30213663/42d77095-df44-4a31-8896-6533bc7fbd6f) but this worked: ```python TapIgnore = ClassVar...

啊,同样的问题,系统是deepin15.5

Thanks for your approval and suggestions. I used to consider splitting to different packages, just like OpencvSharp, but pub.dev limits the maximum size of packages to 100M, so for some...

[![Native-Assets build test](https://github.com/rainyl/opencv_dart/actions/workflows/build_test_native_assets.yaml/badge.svg)](https://github.com/rainyl/opencv_dart/actions/workflows/build_test_native_assets.yaml) ~~For now, `main` channel required~~ ~~`flutter channel main && flutter upgrade`~~ Tested on Flutter 3.19.6 and above Worked: Windows, Linux, Android For ios: build to app success...

Any progress? 11 yeas now 😂

Thanks~ I will try to compile and fix it recently.

```c++ #define CVD_TYPEDEF(TYPE, NAME) \ typedef TYPE *NAME##_CPP; \ typedef struct NAME { \ TYPE *ptr; \ } NAME; ``` To avoid bare pointer be passed to native code, classes...

Actually, you don't need to worry about memory leaks, NativeFinalizer is used to attach the native resources to the dart class, so when a dart class is GCed, the native...