deprecated-react-native-prop-types

5.0.0 • Public • Published

deprecated-react-native-prop-types

This package contains deprecated prop-types from React Native.

Image.propTypes

Before

import {Image} from 'react-native';

doSomething(Image.propTypes);

After

import {ImagePropTypes} from 'deprecated-react-native-prop-types';

doSomething(ImagePropTypes);

Text.propTypes

Before

import {Text} from 'react-native';

doSomething(Text.propTypes);

After

import {TextPropTypes} from 'deprecated-react-native-prop-types';

doSomething(TextPropTypes);

TextInput.propTypes

Before

import {TextInput} from 'react-native';

doSomething(TextInput.propTypes);

After

import {TextInputPropTypes} from 'deprecated-react-native-prop-types';

doSomething(TextInputPropTypes);

ColorPropType

Before

import {ColorPropType} from 'react-native';

doSomething(ColorPropType);

After

import {ColorPropType} from 'deprecated-react-native-prop-types';

doSomething(ColorPropType);

EdgeInsetsPropType

Before

import {EdgeInsetsPropType} from 'react-native';

doSomething(EdgeInsetsPropType);

After

import {EdgeInsetsPropType} from 'deprecated-react-native-prop-types';

doSomething(EdgeInsetsPropType);

PointPropType

Before

import {PointPropType} from 'react-native';

doSomething(PointPropType);

After

import {PointPropType} from 'deprecated-react-native-prop-types';

doSomething(PointPropType);

ViewPropTypes

Before

import {ViewPropTypes} from 'react-native';

doSomething(ViewPropTypes);

After

import {ViewPropTypes} from 'deprecated-react-native-prop-types';

doSomething(ViewPropTypes);

Readme

Keywords

none

Package Sidebar

Install

npm i deprecated-react-native-prop-types

Weekly Downloads

1,752,139

Version

5.0.0

License

MIT

Unpacked Size

46.3 kB

Total Files

21

Last publish

Collaborators

  • lunaleaps
  • eliwhite
  • yungsters
  • fb
  • rh389
  • cortinico