mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
e26c135746
Summary: Add native support on iOS and Android for `Animated.diffClamp` that was added in #9419. **Test plan** Tested that it works properly using the native animations UIExplorer example. Closes https://github.com/facebook/react-native/pull/9691 Differential Revision: D3813440 fbshipit-source-id: 48a3ecddf3708fa44b408954d3d8133ec8537f21
15 lines
409 B
Objective-C
15 lines
409 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 RCTDiffClampAnimatedNode : RCTValueAnimatedNode
|
|
|
|
@end
|