List of known React Native specific styling properties.
npm install react-native-known-styling-properties


List of known React Native specific styling properties.
Sources for supported properties:
- React Native repo
- react-native-styling-cheat-sheet
- css-to-react-native tests
``sh`
yarn add react-native-known-styling-properties --dev
or
`sh`
npm install react-native-known-styling-properties --save-dev
To get list of all styling properties supported by React Native:
`js`
import { allProps } from "react-native-known-styling-properties";
To get list of all styling properties supported by css-to-react-native:
`js`
import { allCSS2RNProps } from "react-native-known-styling-properties";
The result is an array of supported styling properties:
`js``
allProps = [
"alignItems",
"alignSelf",
"flex",
"flexDirection",
"flexWrap",
...
]