2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-03-23 20:35:08 +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.
|
2015-02-20 04:10:52 +00:00
|
|
|
*
|
|
|
|
* @providesModule ImageResizeMode
|
2015-03-26 17:06:50 +00:00
|
|
|
* @flow
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-03-02 12:27:13 +00:00
|
|
|
var keyMirror = require('fbjs/lib/keyMirror');
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ImageResizeMode - Enum for different image resizing modes, set via
|
|
|
|
* `resizeMode` style property on `<Image>` components.
|
|
|
|
*/
|
|
|
|
var ImageResizeMode = keyMirror({
|
|
|
|
/**
|
|
|
|
* contain - The image will be resized such that it will be completely
|
|
|
|
* visible, contained within the frame of the View.
|
|
|
|
*/
|
|
|
|
contain: null,
|
|
|
|
/**
|
|
|
|
* cover - The image will be resized such that the entire area of the view
|
|
|
|
* is covered by the image, potentially clipping parts of the image.
|
|
|
|
*/
|
|
|
|
cover: null,
|
|
|
|
/**
|
|
|
|
* stretch - The image will be stretched to fill the entire frame of the
|
2015-04-21 18:54:14 +00:00
|
|
|
* view without clipping. This may change the aspect ratio of the image,
|
2015-12-15 17:08:39 +00:00
|
|
|
* distorting it.
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
stretch: null,
|
2016-03-19 18:24:06 +00:00
|
|
|
/**
|
|
|
|
* center - The image will be scaled down such that it is completely visible,
|
|
|
|
* if bigger than the area of the view.
|
|
|
|
* The image will not be scaled up.
|
|
|
|
*/
|
|
|
|
center: null,
|
2016-06-22 11:13:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* repeat - The image will be repeated to cover the frame of the View. The
|
|
|
|
* image will keep it's size and aspect ratio.
|
|
|
|
*/
|
|
|
|
repeat: null,
|
2015-02-20 04:10:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = ImageResizeMode;
|