File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <ResourceDictionary xmlns =" http://schemas.microsoft.com/dotnet/2021/maui"
3
+ xmlns : x =" http://schemas.microsoft.com/winfx/2009/xaml"
4
+ x : Class =" Syncfusion.Maui.Toolkit.Themes.SfOtpInputStyles"
5
+ xmlns : otpinput =" clr-namespace:Syncfusion.Maui.Toolkit.OtpInput" >
6
+
7
+ <Style TargetType =" otpinput:SfOtpInput" >
8
+ <Setter Property =" TextColor" Value =" {DynamicResource SfOtpInputTextColor}" />
9
+ <Setter Property =" InputBackground" Value =" {DynamicResource SfOtpInputFilledBackground}" />
10
+ <Setter Property =" Stroke" Value =" {DynamicResource SfOtpInputBorderDefault}" />
11
+ <Setter Property =" PlaceholderColor" Value =" {DynamicResource SfOtpInputPlaceholderColor}" />
12
+ </Style >
13
+ </ResourceDictionary >
Original file line number Diff line number Diff line change
1
+ using Microsoft . Maui . Controls ;
2
+
3
+ namespace Syncfusion . Maui . Toolkit . Themes ;
4
+
5
+ /// <summary>
6
+ /// OtpEntryStyles provides a set of predefined styles for SfOtpInput control.
7
+ /// </summary>
8
+ [ XamlCompilation ( XamlCompilationOptions . Compile ) ]
9
+ public partial class SfOtpInputStyles : ResourceDictionary
10
+ {
11
+ /// <summary>
12
+ /// Initializes a new instance of the <see cref="SfOtpInputStyles"/> class.
13
+ /// </summary>
14
+ public SfOtpInputStyles ( )
15
+ {
16
+ InitializeComponent ( ) ;
17
+ }
18
+ }
You can’t perform that action at this time.
0 commit comments