mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-12 09:20:14 +08:00
- [ReactNative] Fix indentation | Ben Alpert - [ReactKit] Bring back ability to jump to syntax error from redbox | Alex Kotliarskyi - [ReactKit] Update pthread.h import path to be (more?) correct | Ben Alpert - Simplified event handling | Nick Lockwood - [ReactNative] more readme - xcode error help | Spencer Ahrens
21 lines
348 B
Objective-C
21 lines
348 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTRawTextManager.h"
|
|
|
|
#import "RCTShadowRawText.h"
|
|
|
|
@implementation RCTRawTextManager
|
|
|
|
- (UIView *)viewWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher
|
|
{
|
|
return [[UIView alloc] init];
|
|
}
|
|
|
|
- (RCTShadowView *)shadowView
|
|
{
|
|
return [[RCTShadowRawText alloc] init];
|
|
}
|
|
|
|
@end
|
|
|