2024-05-02 15:08:24 +00:00
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
#import "UIViewController+CreateExtension.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2024-11-20 14:28:34 +00:00
|
|
|
@interface RNCPagerViewComponentView : RCTViewComponentView <UIScrollViewDelegate>
|
2024-05-02 15:08:24 +00:00
|
|
|
|
|
|
|
- (void)setPage:(NSInteger)number;
|
|
|
|
- (void)setPageWithoutAnimation:(NSInteger)number;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|
|
|
|
#endif
|