I had the same problem, fill in Height and Width
<Image Source="solved.png"
HorizontalOptions="Start"
HeightRequest="100"
WidthRequest="100"
VerticalOptions="Center"
Margin="8,0,0,0"
/>
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I wrote a program with a main Login Page. Next to the User ID and Password ENTRY I want to make images appear.
When I run the program in Android, everything OK, the images show. If I run the program in Windows Machine the images are not seen.
How can I fix it?
Thank you
I had the same problem, fill in Height and Width
<Image Source="solved.png"
HorizontalOptions="Start"
HeightRequest="100"
WidthRequest="100"
VerticalOptions="Center"
Margin="8,0,0,0"
/>
Hi,
I encountered a similar problem with .NET 7 MAUI.
I tried to fetch an image using the "https://picsum.photos/id/1/100/100.jpg" URI, but it wasn't working on Windows.
However, it ran without any problems on Android.
What solved the issue for me was extending the DefaultRequestHeaders.
var httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537");