Jonathan Peppers
Jonathan Peppers
So this is nothing to do with your markup extension, etc. It is something to do with `EmbeddedResource`. Can you upload the actual image file here? If it's OK with...
@amnk2015 I tried using your image, but things were working for me: https://github.com/jonathanpeppers/glidex/commit/a90887287c4d657aa82acd7a00620d2c7d95352d Is it possible you are hitting a variation of: https://github.com/jonathanpeppers/glidex/issues/10#issuecomment-433109852 and https://github.com/jonathanpeppers/glidex/issues/34 ? Currently I would recommend...
@mknotzer I was having some trouble reproducing this one. Would you be able to make a sample showing it? Thanks!
I think you are hitting this problem: https://github.com/jonathanpeppers/glidex/issues/10#issuecomment-433109852 If you set `WidthRequest` or `HeightRequest`, is the image displayed?
If you could send a PR adding this example here that would help out a lot: https://github.com/jonathanpeppers/glidex/tree/master/glidex.forms.sample/Forms I run through these before each release. If not, I may get around...
If you can, make a view that shows the problem in the glidex samples. Thanks!
@dberroa it sounds like you need to "fork" this repository, and send the pull request from your fork. Does this help? https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork
You'd probably need to include glidex.forms source code in your project, and change this custom renderer: https://github.com/jonathanpeppers/glidex/blob/e9158efd13e56c3750bb150c3056cce946c9dfa0/glidex.forms/ImageRenderer.cs#L4-L8 To something like `[assembly: ExportRenderer (typeof (GlideImage), typeof (Android.Glide.ImageRenderer))]`.
I think if you add glidex.forms to your project at all, it's going to use the above `ImageRenderer`. The `Init()` method is mainly there to ensure the linker doesn't remove...
So this brings up a valid concern: - Xamarin.Forms layouts tend to let the size of image content "push" layouts around. In other words, the size of the image impacts...