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.
38 lines
1.4 KiB
38 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Qwirkle.Pages.Settings"
|
|
xmlns:controls="clr-namespace:Qwirkle.Views"
|
|
Title="Settings">
|
|
<ScrollView>
|
|
<VerticalStackLayout Spacing="25" Padding="5">
|
|
|
|
<Grid Style="{StaticResource GridMain}">
|
|
<controls:GoBack></controls:GoBack>
|
|
<Label Text="Settings"
|
|
Style="{StaticResource Title}"/>
|
|
</Grid>
|
|
|
|
<VerticalStackLayout>
|
|
<Grid RowDefinitions="50"
|
|
ColumnDefinitions="*, *">
|
|
|
|
<HorizontalStackLayout Grid.Row="0"
|
|
Grid.Column="0"
|
|
HorizontalOptions="Center">
|
|
<Label
|
|
Text="Sound"
|
|
Style="{StaticResource ContentSetting}"/>
|
|
|
|
<Switch/>
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
<Slider Style="{StaticResource SliderSound}"/>
|
|
</Grid>
|
|
<Rectangle></Rectangle>
|
|
</VerticalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage> |