2015-09-02 08:25:10 -07: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.
|
|
|
|
*/
|
|
|
|
|
2016-01-20 11:03:22 -08:00
|
|
|
#import "RCTConvert.h"
|
2015-09-02 08:25:10 -07:00
|
|
|
|
2016-01-20 11:03:22 -08:00
|
|
|
typedef NS_ENUM(NSInteger, RCTResizeMode) {
|
|
|
|
RCTResizeModeCover = UIViewContentModeScaleAspectFill,
|
|
|
|
RCTResizeModeContain = UIViewContentModeScaleAspectFit,
|
|
|
|
RCTResizeModeStretch = UIViewContentModeScaleToFill,
|
2016-07-19 03:33:37 -07:00
|
|
|
RCTResizeModeCenter = UIViewContentModeCenter,
|
2016-06-22 04:13:22 -07:00
|
|
|
RCTResizeModeRepeat = -1, // Use negative values to avoid conflicts with iOS enum values.
|
2016-01-20 11:03:22 -08:00
|
|
|
};
|
2015-09-02 08:25:10 -07:00
|
|
|
|
2016-01-20 11:03:22 -08:00
|
|
|
@interface RCTConvert(RCTResizeMode)
|
2015-09-02 08:25:10 -07:00
|
|
|
|
2016-01-20 11:03:22 -08:00
|
|
|
+ (RCTResizeMode)RCTResizeMode:(id)json;
|
2015-09-02 08:25:10 -07:00
|
|
|
|
|
|
|
@end
|