2017-11-19 18:49:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2017-11-17 05:29:35 +00:00
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2017-11-19 18:49:17 +00:00
|
|
|
x:Class="Samples.DisplayAlertPage">
|
2017-11-17 05:29:35 +00:00
|
|
|
<ContentPage.Content>
|
|
|
|
<StackLayout>
|
|
|
|
<Label Text="Welcome to DisplayAlert Sample!" />
|
2017-11-26 17:28:26 +00:00
|
|
|
<ActivityIndicator x:Name="activity" />
|
2017-11-17 05:29:35 +00:00
|
|
|
<Button Text="Tap for Display Alert"
|
|
|
|
Clicked="OnButtonClicked" />
|
|
|
|
</StackLayout>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|