123456789101112131415161718192021222324252627 |
- #import "RNNOptions.h"
- #import "BottomTabsAttachMode.h"
-
- @interface RNNBottomTabsOptions : RNNOptions
-
- @property (nonatomic, strong) Bool* visible;
- @property (nonatomic, strong) IntNumber* currentTabIndex;
- @property (nonatomic, strong) Bool* drawBehind;
- @property (nonatomic, strong) Bool* animate;
- @property (nonatomic, strong) Color* tabColor;
- @property (nonatomic, strong) Color* selectedTabColor;
- @property (nonatomic, strong) Bool* translucent;
- @property (nonatomic, strong) Bool* hideShadow;
- @property (nonatomic, strong) Color* backgroundColor;
- @property (nonatomic, strong) Number* fontSize;
-
- @property (nonatomic, strong) Text* testID;
- @property (nonatomic, strong) Text* currentTabId;
- @property (nonatomic, strong) Text* barStyle;
- @property (nonatomic, strong) Text* fontFamily;
- @property (nonatomic, strong) Text* titleDisplayMode;
- @property (nonatomic, strong) BottomTabsAttachMode* tabsAttachMode;
-
- - (BOOL)shouldDrawBehind;
-
- @end
|