Xamarin Forms is removing space between words at runtime

1

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 !!!

    
asked by anonymous 29.03.2018 / 16:42

1 answer

1

I used the IcoMoon site to generate a file with more font options to include in my project. In iOS it worked normally, but Android had this problem.

I was able to solve by removing the file generated by IcoMoon and adding in place a file that I downloaded to the internet of FontAwesome, it started working correctly.

    
03.04.2018 / 19:43