Renan

Results 117 comments of Renan

In the [dart package conventions](https://dart.dev/tools/pub/package-layout#public-directories), it is mentioned that only two directories in a package (any directory with a pubspec.yaml is a package) are accessible to other packages: `lib` and...

Other places that has this: [Django](https://docs.djangoproject.com/en/4.0/ref/django-admin/#cmdoption-test-failfast) (as flag) [Jest](https://futurestud.io/tutorials/jest-fail-early-and-stop-testing-if-one-test-fails) (as option in which the value is the number of failed tests to cause the abortion)

There is the DART native FFI which as an interface between dart code and c++. I got this sample running: Dart code: https://github.com/renancaraujo/bitmap/blob/master/lib/transformations/brightness.dart#L35 c code: https://github.com/renancaraujo/bitmap/blob/9cd10ebf045858067542d5c55c39246db17d9678/ios/Classes/bitmap.cpp#L26 We can do something...

Hello @lesnitsky. I could try to tackle this via the very_good_cli plugin template. Any objection on this?

Yah, That my friends is almost impossible right now. Unless we manage to connect wasm to a flutter web app and manage to compile our C sources to wasm.

Right, and then how come we would bridge the FFI to call js methods? PS: I'm avoiding PlatformChannelsdue to the possibility od FFI packages become something different than plugins.

Need some more information to get started. Which platform you are deploying to? What are the build modes that pops this error (debug? release?)? What is the output of flutter...

Seems outside of the scope of a photo editing library.

Thanks for your interest. Currently, there is no implementation of a threshold transformation, but you can help this lib grow, contributions are welcome. I've added a card on our [project](https://github.com/renancaraujo/bitmap/projects/1)...

There is a resize operation, and as with any operation, it is sync. See the example app. All operations are applied in a isolate.