Leonardo da Silva

Results 4 issues of Leonardo da Silva

Apparently the v1 embedding stopped working on Flutter 1.17. To fix this issue it is needed to update to the embedding v2: https://flutter.dev/docs/development/packages-and-plugins/plugin-api-migration

I made the required changes for the package to be sound null safe. Since it depended on Pigment which the last update was 2 years ago, to not cause any...

Suppose we have a class called Person: ``` dart class Person { final String name; final int age; Person({this.name, this.age}); } ``` Automatically generate the following methods: ``` dart Person...

feature

Hello, I want to share something that I found recently about a possible memory leak in the library. I am currently using the lib in production and have been suffering...