16 lines
764 B
XML
16 lines
764 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="GuilhermesApp.Pages.FormsMenuPage"
|
|
Shell.NavBarIsVisible="False"
|
|
Title="Formulários">
|
|
|
|
<VerticalStackLayout Spacing="20" Padding="30" VerticalOptions="Center">
|
|
|
|
<Label Text="Gestão de Formulários" FontSize="28" HorizontalOptions="Center" FontAttributes="Bold" Margin="0,0,0,20" />
|
|
|
|
<Button Text="Preencher Novo Formulário" Clicked="OnNewFormClicked" HeightRequest="60" />
|
|
<Button Text="Ver Histórico" Clicked="OnHistoryClicked" HeightRequest="60" />
|
|
|
|
</VerticalStackLayout>
|
|
</ContentPage> |