npm.io
5.0.0 • Published 2 years ago

deprecated-react-native-prop-types

Licence
MIT
Version
5.0.0
Deps
3
Size
45 kB
Vulns
0
Weekly
1.3M
Stars
61

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);