Boa tarde,
Atualmente estou desenvolvendo um App, e necessito empilhas as na vertical e não na horizontal como foi ministrado no curso - Aula 02 - Vídeo 3. Existe alguma forma de quebra de linha no XAML?
A organização deveria ficar exatamente assim:
DATA: Fulano de Tal
DATA: dd/mm/aaaa
ID: 500001
//Meu Código
<DataTemplate>
<ViewCell>
<ViewCell.View>
<StackLayout Orientation="Horizontal">
<Label Text="NOME:" FontAttributes="Bold" VerticalOptions="Start"></Label>
<Label Text="{Binding nomePaciente}" VerticalOptions="Start"></Label>
<Label Text="DATA:" FontAttributes="Bold" VerticalOptions="Start"></Label>
<Label Text="11/10/2017" VerticalOptions="Start" HorizontalOptions="FillAndExpand"></Label>
<Label Text="PASSAGEM:" FontAttributes="Bold" VerticalOptions="Start"></Label>
<Label Text="{Binding passagem}" VerticalOptions="Start"></Label>
</StackLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>