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.

52 lines
1.7 KiB

<?xml version="1.0" encoding="UTF-8"?>
<ContentPage BackgroundColor="{DynamicResource BlackColor}" x:Name="pageContentSetting"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:resources="clr-namespace:TheGameExtreme.Resx"
x:Class="TheGameExtreme.view.Settings">
<Grid
Margin="20,20,20,20">
<Grid.RowDefinitions>
<RowDefinition Height="15*"/>
<RowDefinition Height="28*"/>
<RowDefinition Height="28*"/>
<RowDefinition Height="28*"/>
</Grid.RowDefinitions>
<StackLayout
Grid.Row="0">
<ImageButton Source="ArrowSettingsBack.png"
VerticalOptions="Start"
HorizontalOptions="StartAndExpand"
HeightRequest="40"
WidthRequest="50"
Clicked="SettingToHomePage"
BackgroundColor="{DynamicResource BlackColor}"
Margin="10,10,0,0"/>
</StackLayout>
<StackLayout
Grid.Row="2"
Orientation="Horizontal">
<Label
Text="{x:Static resources:AppResources.WhiteTheme}"
FontSize="25"
TextColor="{DynamicResource WhiteColor}"/>
<Switch
Toggled="Switch_Toggled_Theme"
Margin="30,0,0,50"
x:Name="swTheme"
OnColor="{DynamicResource SkyBlueColor}"
ThumbColor="WhiteSmoke"/>
</StackLayout>
</Grid>
</ContentPage>