28 lines
995 B
XML
28 lines
995 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<?xaml-comp compile="true" ?>
|
|
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
|
|
|
<Style TargetType="ActivityIndicator">
|
|
<Setter Property="Color" Value="{StaticResource Primary}" />
|
|
</Style>
|
|
|
|
<Style TargetType="Button">
|
|
<Setter Property="TextColor" Value="{StaticResource White}" />
|
|
<Setter Property="BackgroundColor" Value="{StaticResource Primary}" />
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="CornerRadius" Value="8" />
|
|
<Setter Property="Padding" Value="14,10" />
|
|
</Style>
|
|
|
|
<Style TargetType="Label">
|
|
<Setter Property="TextColor" Value="{StaticResource Black}" />
|
|
<Setter Property="FontSize" Value="14" />
|
|
</Style>
|
|
|
|
<Style TargetType="Page">
|
|
<Setter Property="BackgroundColor" Value="{StaticResource White}" />
|
|
</Style>
|
|
</ResourceDictionary>
|