45 lines
2.0 KiB
XML
45 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<ResourceDictionary
|
|
x:Class="Payesh.App.Views.Themes.ElementsTheme"
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:materialFrame="clr-namespace:Sharpnado.MaterialFrame;assembly=Sharpnado.MaterialFrame"
|
|
xmlns:textInputLayout="clr-namespace:Syncfusion.XForms.TextInputLayout;assembly=Syncfusion.Core.XForms"
|
|
xmlns:themes="clr-namespace:Payesh.App.Views.Themes;assembly=Payesh.App">
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<themes:MainTheme />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<Style TargetType="ContentPage">
|
|
<Setter Property="BackgroundColor" Value="{StaticResource Gray-300}" />
|
|
</Style>
|
|
|
|
<Style TargetType="materialFrame:MaterialFrame">
|
|
<Setter Property="MaterialTheme" Value="Acrylic" />
|
|
<Setter Property="Margin" Value="5, 5, 5, 10" />
|
|
<Setter Property="Padding" Value="20,15" />
|
|
<Setter Property="CornerRadius" Value="10" />
|
|
<Setter Property="LightThemeBackgroundColor" Value="{StaticResource AcrylicFrameBackgroundColor}" />
|
|
</Style>
|
|
|
|
<Style TargetType="Label">
|
|
<Setter Property="FontFamily" Value="{StaticResource Shabname}" />
|
|
</Style>
|
|
|
|
<Style TargetType="textInputLayout:SfTextInputLayout">
|
|
<Setter Property="ContainerBackgroundColor" Value="Transparent" />
|
|
<Setter Property="ContainerType" Value="Outlined" />
|
|
<Setter Property="OutlineCornerRadius" Value="8" />
|
|
<Setter Property="FlowDirection" Value="RightToLeft" />
|
|
<Setter Property="ErrorLabelStyle">
|
|
<Setter.Value>
|
|
<textInputLayout:LabelStyle FontFamily="{StaticResource Shabname}" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="HintLabelStyle">
|
|
<Setter.Value>
|
|
<textInputLayout:LabelStyle FontFamily="{StaticResource Shabname}" FontSize="16" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |