0
I made an application using Xamarin Forms Cross Platform, at first I only need the android version of it so I don’t care about IOS and Windows. The app is working properly when I test it on one of my phones a Xiaomi Redmi 4x, but when I test it on an Xperia Z1 or other cell phone with less processing capacity the images are disappearing. They appear and disappear as I go to other pages. In total the application has 143 images and there is no way I can change that. The application basically consists of text and images. Use Contentpages and Carouselpages. Example of one of the parts where I use image:
<ContentPage>
<ScrollView>
<StackLayout>
<Image Source="Imagem1Geral.jpg" Aspect="AspectFill"/>
<Label Text="Posição Inicial
"
HorizontalTextAlignment="Center"
FontSize="30"
TextColor="Black"/>
</StackLayout>
</ScrollView>
</ContentPage>
I don’t know what to do...