2019-05-27 11:23:14 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-25 21:17:52 -04:00
|
|
|
<ContentView
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2019-07-05 14:17:09 -04:00
|
|
|
x:Class="Aurora.Design.Components.HostSelector.HostSelector">
|
2019-05-27 11:23:14 -05:00
|
|
|
<ContentView.Content>
|
2019-06-25 21:17:52 -04:00
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition
|
|
|
|
Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackLayout
|
|
|
|
Grid.Row="0"
|
|
|
|
x:Name="CredentialEditorLayout"
|
|
|
|
Orientation="Horizontal"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
VerticalOptions="Start">
|
|
|
|
<Label
|
|
|
|
Text="Hostname"
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
<Entry
|
|
|
|
x:Name="HostnameEntry"/>
|
|
|
|
<Button
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
x:Name="buttonHost"
|
|
|
|
Text="Host"/>
|
|
|
|
<Button
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
x:Name="buttonClient"
|
|
|
|
Text="Join"/>
|
|
|
|
</StackLayout>
|
|
|
|
</Grid>
|
2019-05-27 11:23:14 -05:00
|
|
|
</ContentView.Content>
|
2019-06-25 21:17:52 -04:00
|
|
|
</ContentView>
|