react-native-navigation的迁移库

RNNTitleOptions.h 731B

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