├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── example ├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── app.json └── package.json ├── package.json └── src └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/App.js -------------------------------------------------------------------------------- /example/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/App.test.js -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/README.md -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/app.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/example/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lopespm/react-native-offscreen-toolbar/HEAD/src/index.js --------------------------------------------------------------------------------