mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
22 lines
892 B
XML
22 lines
892 B
XML
<Page x:Class="Marechai.App.Presentation.Views.SecondPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:utu="using:Uno.Toolkit.UI"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid utu:SafeArea.Insets="VisibleBounds">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" /> <RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<utu:NavigationBar Content="Second Page" />
|
|
<StackPanel Grid.Row="1"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<TextBlock Text="{Binding Entity.Name}"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Margin="8" />
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</Page> |