Jonas Schalck
Jonas Schalck
This is still an issue. On Android I used ``` val bitmap = GlideApp.with(context!!) .asBitmap() .override( AppConstants.MAX_PICTURE_RESOLUTION_WIDTH, AppConstants.MAX_PICTURE_RESOLUTION_HEIGHT ) .fitCenter() .load(uri) .submit().get() ``` I can't find an equivalent on Flutter....
Here is my work around to get the proper minWidth and minHeight: ``` Size getCompressionSize(sourceWidth, sourceHeight, minWidth, minHeight){ if (minWidth >= sourceWidth && minHeight >= sourceHeight) return Size(minWidth, minHeight); double...
There are already existing native libraries doing the heavy lifting. I could write an Android plugin within 2 weeks, but don't have any iOS knowledge. If someone can write the...
> Has anyone found the solution? Still hoping someone can write the iOS part ^^
Not yet, but can do it quickly. But useless for a flutter app without iOS, so I'm waiting for someone that can do that before I start.
> > > Has anyone found the solution? > > > > > > Still hoping someone can write the iOS part ^^ > > @themadmrj I recommend that you...
Any news on embedded & relation features? ATM I need 3 subsequent queries with post processing to achieve what could be done in a single query :(
Can someone give an implementation example? The only way I can think of at the moment is: 1. Create an instance of `EasyLocalizationController` 2. Call `controller.loadTranslations()` 3. Create an instance...
I finally got it to work. Someone should document the following somewhere, because it definitely is not currently. First off: `findSystemLocale()` will not work when called from an isolate in...
Combined with my comment, yes.