react-native-navigation的迁移库

RNNTitleOptions.h 544B

12345678910111213141516171819
  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. @property (nonatomic, strong) NSDictionary* fontAttributes;
  13. @end