mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 03:26:07 +00:00
17 lines
263 B
Objective-C
17 lines
263 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTShadowRawText.h"
|
|
|
|
@implementation RCTShadowRawText
|
|
|
|
- (void)setText:(NSString *)text
|
|
{
|
|
if (_text != text) {
|
|
_text = [text copy];
|
|
[self dirtyLayout];
|
|
[self dirtyText];
|
|
}
|
|
}
|
|
|
|
@end
|