mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 03:26:07 +00:00
ef842c285b
- [ReactNative] Fix throttle warning and warn in callback instead of render | Christopher Chedeau - [react-packager][streamline oss] Remove react-page-middleware | Amjad Masad - [ReactNative] Turn on perf measurement around a group feed load | Jing Chen - Implemented Layout animations | Nick Lockwood - [ReactNative] Revert D1815137 - avoid dropping touch start on missing target | Eric Vicenti - Moved RKPOPAnimationManager into FBReactKitComponents | Nick Lockwood - Extracted RKAnimationManager | Nick Lockwood
12 lines
285 B
Objective-C
12 lines
285 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSInteger, RCTAnimationType) {
|
|
RCTAnimationTypeSpring = 0,
|
|
RCTAnimationTypeLinear,
|
|
RCTAnimationTypeEaseIn,
|
|
RCTAnimationTypeEaseOut,
|
|
RCTAnimationTypeEaseInEaseOut,
|
|
};
|