You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
969 B
26 lines
969 B
6 months ago
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="Justice.Views.SosPage"
|
||
|
Title="SOS Alert">
|
||
|
|
||
|
<StackLayout Padding="20" VerticalOptions="CenterAndExpand">
|
||
|
<Label Text="Select Group for SOS Alert" FontSize="Medium" />
|
||
|
<Picker x:Name="GroupPicker">
|
||
|
<Picker.ItemsSource>
|
||
|
<x:Array Type="{x:Type x:String}">
|
||
|
<x:String>Parents</x:String>
|
||
|
<x:String>Friends</x:String>
|
||
|
<x:String>Authority</x:String>
|
||
|
</x:Array>
|
||
|
</Picker.ItemsSource>
|
||
|
</Picker>
|
||
|
|
||
|
<Button Text="Send SOS Alert"
|
||
|
Clicked="OnSendSosClicked"
|
||
|
BackgroundColor="Red"
|
||
|
TextColor="White"
|
||
|
FontSize="Large"
|
||
|
HorizontalOptions="Center" />
|
||
|
</StackLayout>
|
||
|
</ContentPage>
|