I'm working on a project with Xamarin Forms Visual Studio. When running the project for iOS, it works perfectly, but when I run the same project for Android the phrases appear all together. Ex .:
<StackLayout Orientation="Vertical">
<Label
Text="Aguarde! Processando..."
TextColor="{x:StaticResource ColorPrimary}"
FontSize="Small"
HorizontalTextAlignment="Center"/>
<ActivityIndicator
Color="{x:StaticResource ColorPrimary}"
IsRunning="True"/>
</StackLayout>
The result is:
ThishappensforallsentencesinXAMLfiles.IfinXAMLthis<LabelText="Xamarin Forms Visual Studio"/>
, when I run it is XamarinFormsVisualStudio.
Starting XAML: <?xml version="1.0" encoding="UTF-8"?>
;
I already checked the xml:space="preserve"
tag in the resource files;
I have tried to insert this same direct tag into the XAML file and nothing.
Any suggestions?
Thank you !!!