40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage
|
|
x:Class="RelayClient.MainPage"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
Title="Relay Client">
|
|
|
|
<Grid RowDefinitions="Auto,*,Auto" Padding="12" RowSpacing="10">
|
|
|
|
<Border Grid.Row="0" StrokeThickness="1" Padding="10">
|
|
<VerticalStackLayout Spacing="4">
|
|
<Label x:Name="UserLabel"
|
|
Text="Logged in as: Unknown"
|
|
FontAttributes="Bold"
|
|
FontSize="18" />
|
|
<Label Text="#general"
|
|
FontSize="14" />
|
|
</VerticalStackLayout>
|
|
</Border>
|
|
|
|
<Border Grid.Row="1" StrokeThickness="1" Padding="10">
|
|
<ScrollView x:Name="MessagesScrollView">
|
|
<VerticalStackLayout x:Name="MessagesLayout" Spacing="8" />
|
|
</ScrollView>
|
|
</Border>
|
|
|
|
<Grid Grid.Row="2" ColumnDefinitions="*,Auto" ColumnSpacing="10">
|
|
<Entry x:Name="MessageEntry"
|
|
Grid.Column="0"
|
|
Placeholder="Type a message..."
|
|
ReturnType="Send"
|
|
Completed="MessageEntry_OnCompleted" />
|
|
|
|
<Button Grid.Column="1"
|
|
Text="Send"
|
|
Clicked="SendButton_OnClicked" />
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</ContentPage> |