react-native-navigation的迁移库

BottomTabsAttachMode.h 298B

12345678910111213141516
  1. #import "Text.h"
  2. typedef NS_ENUM(NSInteger, AttachMode) {
  3. BottomTabsAttachModeTogether = 0,
  4. BottomTabsAttachModeAfterInitialTab,
  5. BottomTabsAttachModeOnSwitchToTab
  6. };
  7. @interface BottomTabsAttachMode : Text
  8. - (AttachMode)get;
  9. - (AttachMode)getWithDefaultValue:(id)defaultValue;
  10. @end