TELA EM BRANCO
`
<ListView x:Name="listViewVeiculos" ItemsSource="{Binding Veiculos}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<Label>
<Label.FormattedText>
<FormattedString>
<Span Text="Carro Fixo"></Span>
<Span Text=" - "></Span>
<Span Text="R$VALOR"></Span>
</FormattedString>
</Label.FormattedText>
</Label>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
```