Alexander Oprisnik

Results 30 comments of Alexander Oprisnik

Hey @erenulas. Yes of course, that would be amazing. Thank you!

Hey! Thanks for reaching out. The first Vito version was part of 2.5.0, but as an `alpha`: https://repo.maven.apache.org/maven2/com/facebook/fresco/vito-view/ So you'd have to specify the version as `[2.5.0-alpha/](https://repo.maven.apache.org/maven2/com/facebook/fresco/vito-view/2.5.0-alpha/)` I would recommend...

For the first case, rounding options: ```kotlin val imageOptions = ImageOptions.create().round(RoundingOptions.asCircle()).build() VitoView.show(uri, imageOptions, imageView) ``` For the second case: ```kotlin // Ideally you'd only create this once and pass the...

Hey! The SVG support is only an example of how an implementation could look like, we did not implement all features. Feel free to contribute more features to the sample!...

@AikoKiko Glide is using the same SVG library as the Fresco sample, so there should be similar issues there and Fresco's SVG example should also work.

Hey! Do you have a GIF where this happens? Looks like this might be a corrupt GIF. Can you also try with the newest version, 2.3.0?

Hi! Yes, if you re-load an image by setting a new URL (which seems to happen when your notifyDatasetChanged is called), the image will blink. Can you only reload if...

Hey! Thanks for the report. Which ones?

We did add support for native-filters and imagepipeline-native with 766a877dde9967a55238f55bb725ee7d7be7e41e (cc @alanleedev) And React Native is also using the new version and it seems to work for apps using React...

Looks like rotation is not properly supported for HEIC. Can you try with Fresco version 2.3.0? We did make some changed regarding rotation handling.