chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
@@ -0,0 +1,22 @@
#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 RNSScreenStackHostComponentView : NSObject
@end
@interface RNSStackScreenComponentView : NSObject
@end
@interface RNSSplitViewHostComponentView : NSObject
@end
@interface RNSSplitViewScreenComponentView : NSObject
@end
NS_ASSUME_NONNULL_END
@@ -0,0 +1,13 @@
#import "RNSGammaStubs.h"
@implementation RNSScreenStackHostComponentView
@end
@implementation RNSStackScreenComponentView
@end
@implementation RNSSplitViewHostComponentView
@end
@implementation RNSSplitViewScreenComponentView
@end