mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
82dba51f1a
Summary: This diff adds ModuloAnimatedNode on iOS. It separates out code originally submitted in #9048. Test plan (required) Set up an animation with a modulo node, and `useNativeModule: true`. Compare results with `useNativeModule: false`. Closes https://github.com/facebook/react-native/pull/9626 Differential Revision: D3799636 fbshipit-source-id: 594499f11be41bf3ee709249056a3feedeace9eb
15 lines
406 B
Objective-C
15 lines
406 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "RCTValueAnimatedNode.h"
|
|
|
|
@interface RCTModuloAnimatedNode : RCTValueAnimatedNode
|
|
|
|
@end
|