forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNNBottomTabOptions.h
More file actions
32 lines (27 loc) · 1.15 KB
/
RNNBottomTabOptions.h
File metadata and controls
32 lines (27 loc) · 1.15 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
#import "RNNOptions.h"
@class DotIndicatorOptions;
@interface RNNBottomTabOptions : RNNOptions
@property(nonatomic) NSUInteger tag;
@property(nonatomic, strong) Text *text;
@property(nonatomic, strong) Text *badge;
@property(nonatomic, strong) Color *badgeColor;
@property(nonatomic, strong) DotIndicatorOptions *dotIndicator;
@property(nonatomic, strong) Text *fontFamily;
@property(nonatomic, strong) Text *fontWeight;
@property(nonatomic, strong) Text *testID;
@property(nonatomic, strong) Text *accessibilityLabel;
@property(nonatomic, strong) Image *icon;
@property(nonatomic, strong) Image *selectedIcon;
@property(nonatomic, strong) Color *iconColor;
@property(nonatomic, strong) Color *selectedIconColor;
@property(nonatomic, strong) Color *selectedTextColor;
@property(nonatomic, strong) RNNDictionary *iconInsets;
@property(nonatomic, strong) Color *textColor;
@property(nonatomic, strong) Number *fontSize;
@property(nonatomic, strong) Bool *visible;
@property(nonatomic, strong) Bool *selectTabOnPress;
@property(nonatomic, strong) Text *sfSymbol;
@property(nonatomic, strong) Text *sfSelectedSymbol;
@property(nonatomic, strong) Text *role;
- (BOOL)hasValue;
@end