mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 14:51:44 +01:00
16 lines
798 B
XML
16 lines
798 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<FlyoutPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Borepin.Page.MainPage"
|
|
x:Name="page">
|
|
<FlyoutPage.Flyout>
|
|
<ContentPage Title="FabAccess">
|
|
<StackLayout Margin="0,50,0,0">
|
|
<Button Text="Machines" Command="{Binding NavigateCommand}" CommandParameter="MachineListPage" />
|
|
<Button Text="Servers" Command="{Binding NavigateCommand}" CommandParameter="ServerListPage" />
|
|
<!--<Button Text="Settings" Command="{Binding NavigateCommand}" CommandParameter="SettingsPage" />-->
|
|
</StackLayout>
|
|
</ContentPage>
|
|
</FlyoutPage.Flyout>
|
|
</FlyoutPage>
|