2019-02-25 23:54:02 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2019-03-11 23:45:38 +03:00
|
|
|
x:Class="Xamarin.Forms.Sandbox.MainPage"
|
2019-04-11 07:54:50 +03:00
|
|
|
xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core"
|
2019-03-11 23:45:38 +03:00
|
|
|
ios:Page.UseSafeArea="true">
|
2019-02-25 23:54:02 +03:00
|
|
|
<ContentPage.Content>
|
|
|
|
<StackLayout>
|
2019-03-11 23:45:38 +03:00
|
|
|
<Button Text="I am a Button" />
|
2019-02-25 23:54:02 +03:00
|
|
|
</StackLayout>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|