This commit is contained in:
Hailey
2025-05-11 11:55:33 -07:00
parent f0a5722a6d
commit f962338cda
12 changed files with 508 additions and 3 deletions
@@ -0,0 +1,19 @@
#import <React/RCTViewManager.h>
#import <React/RCTUIManager.h>
#import "RCTBridge.h"
@interface ScrollForwarderViewManager : RCTViewManager
@end
@implementation ScrollForwarderViewManager
RCT_EXPORT_MODULE(ScrollForwarderView)
- (UIView *)view
{
return [[UIView alloc] init];
}
RCT_EXPORT_VIEW_PROPERTY(scrollViewTag, NSNumber)
@end