react-native/Libraries/Image/RCTResizeMode.h

23 lines
637 B
C
Raw Normal View History

2015-09-02 15:25:10 +00:00
/**
* 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 "RCTConvert.h"
2015-09-02 15:25:10 +00:00
typedef NS_ENUM(NSInteger, RCTResizeMode) {
RCTResizeModeCover = UIViewContentModeScaleAspectFill,
RCTResizeModeContain = UIViewContentModeScaleAspectFit,
RCTResizeModeStretch = UIViewContentModeScaleToFill,
};
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