react-native-no-connection

1.0.1 • Public • Published

react-native-no-connection

npm version

react-native-no-connection is a wrapper component indicating when network connection has been lost

Install

yarn add react-native-no-connection

Usage

import React from 'react'
import { ScrollView, Text } from 'react-native'
import NoConnection from 'react-native-no-connection'
 
export default class extends React.Component {
  getData () {
    console.log('fetching data now')
  }
 
  render() {
    return (
      <ScrollView>
        <NoConnection onConnectionRestored={this.getData.bind(this)}>
          <Text>Showing content now</Text>
        </NoConnection>
      </ScrollView>
    )
  }
}

Props

onConnectionRestored (required)

Function to run when connection has been restored

Styles

Uses styled-components 💅 for the base styling.

Development

yarn
npm run dev

Build

yarn
npm run build
npm login
npm version patch
git add -A
git push origin master
npm publish

License

MIT

Package Sidebar

Install

npm i react-native-no-connection

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

4.9 MB

Total Files

9

Last publish

Collaborators

  • svnm