[BREAKGLASS] Append-only mirror of github.com/bluewallet/react-native-directory-picker
Go to file
Corbin Crutchley 8fa724483c
Merge pull request #1 from vinceTheProgrammer/master
Moved example console.log() into a .then()
2020-11-02 14:36:55 -08:00
android WIP 2020-06-30 18:41:03 -07:00
ios Fix function name for iOS 2020-07-28 19:13:52 -07:00
.gitignore Cleanup of npmignore file 2020-07-28 17:01:11 -07:00
index.android.js Initial work to support promises 2020-07-28 18:53:04 -07:00
index.d.ts Initial work to support promises 2020-07-28 18:53:04 -07:00
index.ios.js Fix function name for iOS 2020-07-28 19:13:52 -07:00
index.js Got initial directory picking working 2020-06-25 17:35:35 -07:00
package-lock.json Initial work to support promises 2020-07-28 18:53:04 -07:00
package.json Fix function name for iOS 2020-07-28 19:13:52 -07:00
README.md Moved example console.log() into a .then() 2020-10-26 13:20:24 -05:00

React Native Directory Picker

Our npm path

Install

npm i --save react-native-directory-picker

Or

yarn add react-native-directory-picker

Usage

Usage in JavaScript

import {selectDirectory} from 'react-native-immersive-bars';

// ...

selectDirectory().then((path) => {
  console.log(`The path is ${path}`);
});