mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
ad8a335864
Summary:Follow-up to https://github.com/facebook/react-native/pull/5084 This… - changes all requires within RN to `require('fbjs/lib/…')` - updates `.flowconfig` - updates `packager/blacklist.js` - adapts tests - removes things from `Libraries/vendor/{core,emitter}` that are also in fbjs - removes knowledge of `fbjs` from the packager Closes https://github.com/facebook/react-native/pull/5084 Reviewed By: bestander Differential Revision: D2926835 fb-gh-sync-id: 2095e22b2f38e032599d1f2601722b3560e8b6e9 shipit-source-id: 2095e22b2f38e032599d1f2601722b3560e8b6e9
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @providesModule ImageResizeMode
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var keyMirror = require('fbjs/lib/keyMirror');
|
|
|
|
/**
|
|
* 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
|
|
* view without clipping. This may change the aspect ratio of the image,
|
|
* distorting it.
|
|
*/
|
|
stretch: null,
|
|
});
|
|
|
|
module.exports = ImageResizeMode;
|