react-native-navigation的迁移库

RNNTitleOptions.h 501B

123456789101112131415161718
  1. #import "RNNOptions.h"
  2. #import "RNNSubtitleOptions.h"
  3. #import "RNNComponentOptions.h"
  4. @interface RNNTitleOptions : RNNOptions
  5. @property (nonatomic, strong) Text* text;
  6. @property (nonatomic, strong) Number* fontSize;
  7. @property (nonatomic, strong) Color* color;
  8. @property (nonatomic, strong) Text* fontFamily;
  9. @property (nonatomic, strong) Text* fontWeight;
  10. @property (nonatomic, strong) RNNComponentOptions* component;
  11. @property (nonatomic, strong) Text* componentAlignment;
  12. - (BOOL)hasValue;
  13. @end