react-native-navigation的迁移库

RNNTitleOptions.h 531B

12345678910111213141516171819
  1. #import "RNNOptions.h"
  2. #import "RNNSubtitleOptions.h"
  3. @interface RNNTitleOptions : RNNOptions
  4. @property (nonatomic, strong) NSString* text;
  5. @property (nonatomic, strong) NSNumber* fontSize;
  6. @property (nonatomic, strong) NSNumber* color;
  7. @property (nonatomic, strong) NSString* fontFamily;
  8. @property (nonatomic, strong) NSString* component;
  9. @property (nonatomic, strong) NSString* componentAlignment;
  10. @property (nonatomic, strong) RNNSubtitleOptions* subtitle;
  11. @property (nonatomic, strong) NSDictionary* fontAttributes;
  12. @end