Imported Upstream version 1.34.0
[platform/upstream/grpc.git] / examples / csharp / HelloworldXamarin / HelloworldXamarin / MainPage.xaml
1 <?xml version="1.0" encoding="utf-8" ?>
2 <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
3              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4              x:Class="HelloworldXamarin.MainPage">
5
6     <StackLayout>
7         <Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
8             <Label Text="Helloworld, gRPC + Xamarin" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
9         </Frame>
10         <Label Text="Click the button to try gRPC on Xamarin" FontSize="16" Padding="30,0,30,0"/>
11         <Button Text="Click here!" Clicked="Button_Clicked"/>
12     </StackLayout>
13
14 </ContentPage>