react-native-navigation的迁移库

RNNBackButtonOptions.h 505B

123456789101112131415161718
  1. #import "RNNOptions.h"
  2. @interface RNNBackButtonOptions : RNNOptions
  3. @property (nonatomic, strong) Image* icon;
  4. @property (nonatomic, strong) Text* title;
  5. @property (nonatomic, strong) Text* fontFamily;
  6. @property (nonatomic, strong) Number* fontSize;
  7. @property (nonatomic, strong) Text* transition;
  8. @property (nonatomic, strong) Text* testID;
  9. @property (nonatomic, strong) Color* color;
  10. @property (nonatomic, strong) Bool* showTitle;
  11. @property (nonatomic, strong) Bool* visible;
  12. - (BOOL)hasValue;
  13. @end