Na tela do agendamento preciso rolar a página para ver o datepicker e etc. Mas o app para e fecha.
Na tela do agendamento preciso rolar a página para ver o datepicker e etc. Mas o app para e fecha.
Olá, Bruno
Você está testando em qual aparelho ou emulador Android?
Pode postar aqui o código XAML da sua página para darmos uma olhada?
Estou usando o emulador do Visual Studio Android_Accelereted_x86_Nougat(Android7.1 - API 25)
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="TestDrive2.Views.AgendamentoView"
Title="{Binding Veiculo.Nome}">
<StackLayout Margin="10" Padding="5">
<TableView Intent="Form">
<TableRoot>
<TableSection Title="Seus Dados">
<EntryCell Label="Nome:"></EntryCell>
<EntryCell Label="Fone:" Keyboard="Telephone"></EntryCell>
<EntryCell Label="E-mail:" Keyboard="Email"></EntryCell>
</TableSection>
<TableSection Title="Agendamento">
<ViewCell>
</ViewCell>
<ViewCell>
</ViewCell>
</TableSection>
</TableRoot>
</TableView>
<Button Text="Agendar" x:Name="btnAgendar" Clicked="btnAgendar_Clicked" VerticalOptions="End"></Button>
</StackLayout>
</ContentPage>
Conseguiu dar uma olhada?