1234567891011121314151617181920212223 |
- #import "RNNOptions.h"
-
- @interface RNNBottomTabsOptions : RNNOptions
-
- @property (nonatomic, strong) NSNumber* hidden;
- @property (nonatomic, strong) NSNumber* animateHide;
- @property (nonatomic, strong) NSNumber* currentTabIndex;
- @property (nonatomic, strong) NSString* testID;
- @property (nonatomic, strong) NSNumber* drawBehind;
- @property (nonatomic, strong) NSString* currentTabId;
-
- @property (nonatomic, strong) NSNumber* translucent;
- @property (nonatomic, strong) NSNumber* hideShadow;
- @property (nonatomic, strong) NSNumber* backgroundColor;
- @property (nonatomic, strong) NSNumber* textColor;
- @property (nonatomic, strong) NSNumber* tabColor;
- @property (nonatomic, strong) NSNumber* selectedTabColor;
- @property (nonatomic, strong) NSNumber* selectedTextColor;
- @property (nonatomic, strong) NSString* fontFamily;
- @property (nonatomic, strong) NSNumber* fontSize;
-
- @end
|