Merge branch 'master' into ViewPropTypes

This commit is contained in:
Gant Laborde 2017-07-15 12:38:29 -05:00 committed by GitHub
commit e3d4aee698
4 changed files with 16 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// @flow
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { processColor, requireNativeComponent, PointPropType, StyleSheet, View, ViewPropTypes } from 'react-native';
const deprecatedPropType = require('react-native/Libraries/Utilities/deprecatedPropType.js');

View File

@ -2,7 +2,8 @@
* @providesModule LinearGradient
* @flow
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { processColor, requireNativeComponent, PointPropType, View, ViewPropTypes } from 'react-native';
const deprecatedPropType = require('react-native/Libraries/Utilities/deprecatedPropType.js');

9
index.js Normal file
View File

@ -0,0 +1,9 @@
import { Platform } from "react-native";
import LinearGradientIos from "./index.ios.js";
import LinearGradientAndroid from "./index.android.js";
const LinearGradient = Platform.OS === "ios"
? LinearGradientIos
: LinearGradientAndroid;
export default LinearGradient;

View File

@ -24,5 +24,8 @@
},
"devDependencies": {
"jest-cli": "0.2.1"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}