Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
48 lines (36 loc) · 1.16 KB

README.md

File metadata and controls

executable file
·
48 lines (36 loc) · 1.16 KB

tipsi-dash-line

Build Status

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',
  },
})

Examples