react-native-quick-style
v1.0.20
Published
```bash npm install --save react-native-quick-style ```
Downloads
3
Readme
react-native-quick-style
npm install --save react-native-quick-style
Combines most prefered styles and enables you to select from list
example
import {QuickViewStyle,QuickTextStyle} from 'react-native-quick-style';
const App = () => {
return(
<View style={QuickViewStyle(["center","fill"])}>
<Text style={QuickTextStyle(["fontSize-15","bold"])}>
{"some text"}
</Text>
</View>
)
}