├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── README.md ├── index.js ├── package.json └── src ├── DoneBar.js └── Example.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/package.json -------------------------------------------------------------------------------- /src/DoneBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/src/DoneBar.js -------------------------------------------------------------------------------- /src/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileung/done-bar/HEAD/src/Example.js --------------------------------------------------------------------------------