react-native/Libraries/Image/RCTResizeMode.h

23 lines
658 B
C
Raw Normal View History

2015-09-02 15:25:10 +00:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
2015-09-02 15:25:10 +00:00
*/
#import <React/RCTConvert.h>
2015-09-02 15:25:10 +00:00
typedef NS_ENUM(NSInteger, RCTResizeMode) {
RCTResizeModeCover = UIViewContentModeScaleAspectFill,
RCTResizeModeContain = UIViewContentModeScaleAspectFit,
RCTResizeModeStretch = UIViewContentModeScaleToFill,
RCTResizeModeCenter = UIViewContentModeCenter,
RCTResizeModeRepeat = -1, // Use negative values to avoid conflicts with iOS enum values.
};
2015-09-02 15:25:10 +00:00
@interface RCTConvert(RCTResizeMode)
2015-09-02 15:25:10 +00:00
+ (RCTResizeMode)RCTResizeMode:(id)json;
2015-09-02 15:25:10 +00:00
@end