You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately at the moment I'm extremely busy with work projects. I don't have enough time to check on issues/pull requests. I've however noticed that there's quite a lot of activity around the package, which I didn't initially expect :P
Very sorry for that. At the moment I don't have an exact timeline as to when I'll be able to work on the package. The reason as to why I can't commit hours working on this is that this package was developed as a part of our application, and currently it perfectly fits our usecase.
Many thanks to all the people who're submitting pull requests - I'll try to look through those and merge them on July 20. As for other issues - no estimate yet.
In the future I have a refactor planned for this package as well as a couple of big new features (video support?)
Special thanks to @talamaska who's been active in helping out other people with this package from the beginning.
The text was updated successfully, but these errors were encountered:
Thanks everyone for the pull requests! I've merged all of them and deployed version 1.2.0 with a couple of more fixes. Also note that 1.2.0 has a minimum Flutter constraint of 3.22.0 due to WASM support. However, if this is breaking things for lots of people, I can deploy another version with a lesser Flutter constraint.
As for the prevalent theme issue - I've added a temporary solution that allows you to pass ThemeData/CupertinoThemeData when pushing the cropper. I've fixed the theme auto-generation, so now it should properly respect the incoming primary color and generate the appropriate theme.
If the auto-generated theme still looks off, you can pass a custom Theme like so:
final result =awaitshowMaterialImageCropper(
context,
imageProvider:constNetworkImage('MY_IMAGE_URL'), // Or any other image provider
themeData:ThemeData(...),
);
final result =awaitshowCupertinoImageCropper(
context,
imageProvider:constNetworkImage('MY_IMAGE_URL'), // Or any other image provider
themeData:CupertinoThemeData(...),
);
Hi guys!
Unfortunately at the moment I'm extremely busy with work projects. I don't have enough time to check on issues/pull requests. I've however noticed that there's quite a lot of activity around the package, which I didn't initially expect :P
Very sorry for that. At the moment I don't have an exact timeline as to when I'll be able to work on the package. The reason as to why I can't commit hours working on this is that this package was developed as a part of our application, and currently it perfectly fits our usecase.
Many thanks to all the people who're submitting pull requests - I'll try to look through those and merge them on July 20. As for other issues - no estimate yet.
In the future I have a refactor planned for this package as well as a couple of big new features (video support?)
Special thanks to @talamaska who's been active in helping out other people with this package from the beginning.
The text was updated successfully, but these errors were encountered: