react-native-navigation的迁移库

RNNBackButtonOptions.h 461B

1234567891011121314151617
  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) Color* color;
  9. @property (nonatomic, strong) Bool* showTitle;
  10. @property (nonatomic, strong) Bool* visible;
  11. - (BOOL)hasValue;
  12. @end