Removed many features of Rg.Plugins.Popups (which this is based off) so can start again from scratch
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls"
|
|
xmlns:local="clr-namespace:SampleMaui"
|
|
x:Class="SampleMaui.App"
|
|
windows:Application.ImageDirectory="Assets">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
|
|
<Color x:Key="PrimaryColor">#512bdf</Color>
|
|
<Color x:Key="SecondaryColor">White</Color>
|
|
|
|
<Style TargetType="Label">
|
|
<Setter Property="TextColor" Value="{DynamicResource PrimaryColor}" />
|
|
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
</Style>
|
|
|
|
<Style TargetType="Button">
|
|
<Setter Property="TextColor" Value="{DynamicResource SecondaryColor}" />
|
|
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
<Setter Property="BackgroundColor" Value="{DynamicResource PrimaryColor}" />
|
|
<Setter Property="Padding" Value="14,10" />
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|