first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#import <Foundation/Foundation.h>
// These symbols are a stubs for components defined in Gamma project implementation.
// We need these, because we can not really trick codegen to generate code only for components
// that satisfy some condition (e.g. when env var is defined). If these symbols are missing,
// the application will fail in runtime when RN attempts to create components class registry.
NS_ASSUME_NONNULL_BEGIN
@interface RNSStackHostComponentView : NSObject
@end
@interface RNSStackScreenComponentView : NSObject
@end
@interface RNSSplitViewHostComponentView : NSObject
@end
@interface RNSSplitViewScreenComponentView : NSObject
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,13 @@
#import "RNSGammaStubs.h"
@implementation RNSStackHostComponentView
@end
@implementation RNSStackScreenComponentView
@end
@implementation RNSSplitViewHostComponentView
@end
@implementation RNSSplitViewScreenComponentView
@end