tipsi-dash-line
v0.1.0
Published
React Native dashed line component
Downloads
43
Readme
tipsi-dash-line
React Native Component for drawing dashed line.
Compatibility
This package is now built for React Native 0.40
or greater!
Installation
Run npm install --save tipsi-dash-line
to add the package to your app's dependencies.
Please do not forget to run react-native link tipsi-dash-line
Usage
import React, { Component } from 'react'
import {
StyleSheet,
View,
} from 'react-native'
import { DashLine } from 'tipsi-dash-line'
export default class example extends Component {
render() {
return (
<View style={styles.container}>
<DashLine dashColor="#ff0000" dashLineWidth={10} dashLineSpace={4}/>
</View>
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'flex-start',
alignItems: 'stretch',
},
})