mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Page x:Class="Marechai.App.Presentation.MainPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:Marechai.App.Presentation"
|
|
xmlns:uen="using:Uno.Extensions.Navigation.UI"
|
|
xmlns:utu="using:Uno.Toolkit.UI"
|
|
NavigationCacheMode="Required"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
<ScrollViewer IsTabStop="True">
|
|
<Grid utu:SafeArea.Insets="VisibleBounds">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<utu:NavigationBar Content="{Binding Title}" />
|
|
|
|
<StackPanel Grid.Row="1"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Spacing="16">
|
|
<TextBox Text="{Binding Name, Mode=TwoWay}"
|
|
PlaceholderText="Enter your name:" />
|
|
<Button Content="Go to Second Page"
|
|
AutomationProperties.AutomationId="SecondPageButton"
|
|
Command="{Binding GoToSecond}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</ScrollViewer>
|
|
</Page>
|