18 lines
705 B
Plaintext
18 lines
705 B
Plaintext
![]() |
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="MyMobileApp.SecondPage">
|
||
|
<ContentPage.Content>
|
||
|
<StackLayout>
|
||
|
<Button Text="Выйти"
|
||
|
VerticalOptions="Center"
|
||
|
HorizontalOptions="Center"
|
||
|
FontSize="18"
|
||
|
TextTransform="None"
|
||
|
CornerRadius="15"
|
||
|
WidthRequest="350"
|
||
|
BackgroundColor="#48B2E7"
|
||
|
Clicked="Button_Clicked" />
|
||
|
</StackLayout>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|