-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathDMPasscodeConfig.h
More file actions
94 lines (75 loc) · 1.91 KB
/
Copy pathDMPasscodeConfig.h
File metadata and controls
94 lines (75 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//
// DMPasscodeConfig.h
// Pods
//
// Created by Dylan Marriott on 06.12.14.
//
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface DMPasscodeConfig : NSObject
/**
* Animations enabled inside the passcode view
*/
@property (nonatomic) BOOL animationsEnabled;
/**
* The background color of the passcode view
*/
@property (nonatomic, strong) UIColor* backgroundColor;
/**
* The background color of the navigation bar.
*/
@property (nonatomic, strong) UIColor* navigationBarBackgroundColor;
/**
* The foreground color (icon) of the navigation bar.
*/
@property (nonatomic, strong) UIColor* navigationBarForegroundColor;
/**
* The status bar style.
*/
@property (nonatomic) UIStatusBarStyle statusBarStyle;
/**
* The color of the round field.
*/
@property (nonatomic, strong) UIColor* fieldColor;
/**
* The color of the empty field.
*/
@property (nonatomic, strong) UIColor* emptyFieldColor;
/**
* The background color of the error message.
*/
@property (nonatomic, strong) UIColor* errorBackgroundColor;
/**
* The foreground color (text color) of the error message.
*/
@property (nonatomic, strong) UIColor* errorForegroundColor;
/**
* The text color of the description / instructions.
*/
@property (nonatomic, strong) UIColor* descriptionColor;
/**
* The appearance of the input keyboard.
*/
@property (nonatomic) UIKeyboardAppearance inputKeyboardAppearance;
/**
* The font used for instructions.
*/
@property (nonatomic,strong) UIFont *instructionsFont;
/**
* The font used for Error.
*/
@property (nonatomic,strong) UIFont *errorFont;
/**
* The Navigation Bar Title.
*/
@property (nonatomic, strong) NSString * navigationBarTitle;
/**
* The font used for the Navigation Bar.
*/
@property (nonatomic, strong) UIFont * navigationBarFont;
/**
* The color used for the Navigation Bar Title.
*/
@property (nonatomic, strong) UIColor * navigationBarTitleColor;
@end