25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<?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="Phonebook.SettingsPage"
|
|
Title="Настройки"
|
|
Shell.TitleColor="{DynamicResource Primary}"
|
|
BackgroundColor="{DynamicResource PageBackgroundColor}">
|
|
|
|
<ScrollView>
|
|
<VerticalStackLayout Padding="20" Spacing="16">
|
|
|
|
<Label Text="Выбор темы"
|
|
Style="{DynamicResource Headline}"
|
|
HorizontalOptions="Center"/>
|
|
|
|
<Button Text="Зеленая тема" Clicked="GreenSelected" BackgroundColor="{DynamicResource Primary}"/>
|
|
<Button Text="Синяя тема" Clicked="BlueSelected" BackgroundColor="{DynamicResource Primary}"/>
|
|
<Button Text="Темная тема" Clicked="DarkSelected" BackgroundColor="{DynamicResource Primary}"/>
|
|
|
|
<Label Text="Другие настройки" Margin="5"/>
|
|
<Button Text="Очистить контакты" Clicked="ClearSelected" BackgroundColor="{DynamicResource Error}"/>
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage> |