react-native-navigation的迁移库

RNNTitleOptions.h 574B

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