diff --git a/Libraries/Text/Text/RCTTextRenderer.m b/Libraries/Text/Text/RCTTextRenderer.m index 8eaecd5fe2e485..9f97cc2f12343d 100644 --- a/Libraries/Text/Text/RCTTextRenderer.m +++ b/Libraries/Text/Text/RCTTextRenderer.m @@ -47,4 +47,10 @@ - (void)drawLayer:(CALayer *)layer CGContextRestoreGState(ctx); } +- (id)actionForLayer:(CALayer *)layer forKey:(NSString *)event +{ + // Disable all implicit animations. + return (id)[NSNull null]; +} + @end