react-native-navigation的迁移库

RNNButtonOptions.h 483B

12345678910111213141516
  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. @end