gitextract_088uk1dz/ ├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .watchmanconfig ├── __tests__/ │ ├── index.android.js │ └── index.ios.js ├── android/ │ ├── app/ │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── assets/ │ │ │ └── fonts/ │ │ │ └── SF-UI-Text-Regular.otf │ │ ├── java/ │ │ │ └── com/ │ │ │ └── rnauth/ │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res/ │ │ └── values/ │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores/ │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── index.android.js ├── index.ios.js ├── ios/ │ ├── rnauth/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── rnauth-tvOS/ │ │ └── Info.plist │ ├── rnauth-tvOSTests/ │ │ └── Info.plist │ ├── rnauth.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── rnauth-tvOS.xcscheme │ │ └── rnauth.xcscheme │ └── rnauthTests/ │ ├── Info.plist │ └── rnauthTests.m ├── package.json ├── readme.md └── src/ ├── App.js ├── Router.js ├── components/ │ ├── auth/ │ │ ├── Signin.js │ │ ├── Signup.js │ │ └── authStyle.js │ ├── common/ │ │ ├── Button.js │ │ ├── Confirm.js │ │ ├── Container.js │ │ ├── Header.js │ │ ├── Input.js │ │ ├── Item.js │ │ ├── Spinner.js │ │ └── index.js │ └── post/ │ ├── PostCreate.js │ ├── PostEdit.js │ ├── PostList.js │ └── postStyle.js ├── configureStore.js ├── containers/ │ ├── auth/ │ │ ├── Signin.js │ │ ├── Signup.js │ │ ├── requireAuth.js │ │ └── requireNotAuth.js │ └── post/ │ ├── PostCreate.js │ ├── PostEdit.js │ └── PostList.js ├── firebase.example.json └── modules/ ├── auth.js └── post.js