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.
|
|
|
|
*/
|
|
|
|
|
2016-01-20 19:03:22 +00:00
|
|
|
#import "RCTResizeMode.h"
|
2015-09-02 15:25:10 +00:00
|
|
|
|
2016-01-20 19:03:22 +00:00
|
|
|
@implementation RCTConvert(RCTResizeMode)
|
2015-09-02 15:25:10 +00:00
|
|
|
|
2016-01-20 19:03:22 +00:00
|
|
|
RCT_ENUM_CONVERTER(RCTResizeMode, (@{
|
|
|
|
@"cover": @(RCTResizeModeCover),
|
|
|
|
@"contain": @(RCTResizeModeContain),
|
|
|
|
@"stretch": @(RCTResizeModeStretch),
|
2016-07-19 10:33:37 +00:00
|
|
|
@"center": @(RCTResizeModeCenter),
|
2016-06-22 11:13:22 +00:00
|
|
|
@"repeat": @(RCTResizeModeRepeat),
|
2016-01-20 19:03:22 +00:00
|
|
|
}), RCTResizeModeStretch, integerValue)
|
2015-09-02 15:25:10 +00:00
|
|
|
|
|
|
|
@end
|