Skip to content

cleandersonlobo/react-native-dialog-progress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-dialog-progress

npm npm npm npm

Installation

First you need to install react-native-dialog:

$ npm install react-native-dialog-progress --save

Installation (Android)

React Native Link

$ react-native link react-native-dialog-progress

Manually

...
include ':react-native-dialog-progress'
project(':react-native-dialog-progress').projectDir = new File(settingsDir, '../node_modules/react-native-dialog-progress/android')
  • In android/app/build.gradle
...
dependencies {
    ...
    compile project(':react-native-dialog-progress')
}
  • register module (in MainApplication.java)
......
import com.dialogprogress.DialogProgressPackage;  // <--- import

......

@Override
protected List<ReactPackage> getPackages() {
   ......
   new DialogProgressPackage(),            // <------ add here
   ......
}

Usage

Show DialogProgress

Example

    import DialogProgress from 'react-native-dialog-progress'
    const options = {
        title:"Loading",
        message:"This is a message!",
        isCancelable:true
    }
    DialogProgress.show(options)

Options

Name Description Default/Required Type
title text for the dialog title undefined string
message text for the dialog message undefined string
isCancelable true if the dialog is cancelable, false otherwise false bool

Hide DialogProgress

Example

    import DialogProgress from 'react-native-dialog-progress'

    DialogProgress.hide()

Thanks

License

About

A dialog showing a progress indicator for React Native

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published