react-native-navigation的迁移库

RNNButtonOptions.h 536B

1234567891011121314151617
  1. #import "RNNOptions.h"
  2. #import "RNNInsetsOptions.h"
  3. @interface RNNButtonOptions : RNNOptions
  4. @property (nonatomic, strong) Text* fontFamily;
  5. @property (nonatomic, strong) Text* text;
  6. @property (nonatomic, strong) Number* fontSize;
  7. @property (nonatomic, strong) Color* color;
  8. @property (nonatomic, strong) Color* disabledColor;
  9. @property (nonatomic, strong) Image* icon;
  10. @property (nonatomic, strong) Bool* enabled;
  11. @property (nonatomic, strong) RNNInsetsOptions* iconInsets;
  12. @property(nonatomic, strong) Bool *selectTabOnPress;
  13. @end