├── .flowconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── changelog.js ├── commitlint.config.js ├── demo ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── demo │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── demo-tvOS │ │ └── Info.plist │ ├── demo-tvOSTests │ │ └── Info.plist │ ├── demo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── demo-tvOS.xcscheme │ │ │ └── demo.xcscheme │ ├── demo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── demoTests │ │ ├── Info.plist │ │ └── demoTests.m ├── metro.config.js ├── package.json ├── screenshot-android.png ├── screenshot-ios.png └── yarn.lock ├── package.json ├── src ├── fb-collage.component.tsx ├── fb-collage.style.ts ├── fb-collage.type.ts └── index.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @meharbhutta 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/README.md -------------------------------------------------------------------------------- /changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/changelog.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /demo/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/.buckconfig -------------------------------------------------------------------------------- /demo/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/.flowconfig -------------------------------------------------------------------------------- /demo/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /demo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/App.js -------------------------------------------------------------------------------- /demo/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/__tests__/App-test.js -------------------------------------------------------------------------------- /demo/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/BUCK -------------------------------------------------------------------------------- /demo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/build.gradle -------------------------------------------------------------------------------- /demo/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/build_defs.bzl -------------------------------------------------------------------------------- /demo/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /demo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/android/app/src/main/java/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/java/com/demo/MainActivity.java -------------------------------------------------------------------------------- /demo/android/app/src/main/java/com/demo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/java/com/demo/MainApplication.java -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/build.gradle -------------------------------------------------------------------------------- /demo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/gradle.properties -------------------------------------------------------------------------------- /demo/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /demo/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/gradlew -------------------------------------------------------------------------------- /demo/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/gradlew.bat -------------------------------------------------------------------------------- /demo/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/keystores/BUCK -------------------------------------------------------------------------------- /demo/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /demo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'demo' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /demo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/app.json -------------------------------------------------------------------------------- /demo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/babel.config.js -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/ios/demo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo-tvOS/Info.plist -------------------------------------------------------------------------------- /demo/ios/demo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /demo/ios/demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/ios/demo.xcodeproj/xcshareddata/xcschemes/demo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo.xcodeproj/xcshareddata/xcschemes/demo-tvOS.xcscheme -------------------------------------------------------------------------------- /demo/ios/demo.xcodeproj/xcshareddata/xcschemes/demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo.xcodeproj/xcshareddata/xcschemes/demo.xcscheme -------------------------------------------------------------------------------- /demo/ios/demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/AppDelegate.h -------------------------------------------------------------------------------- /demo/ios/demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/AppDelegate.m -------------------------------------------------------------------------------- /demo/ios/demo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /demo/ios/demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/ios/demo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/ios/demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/Info.plist -------------------------------------------------------------------------------- /demo/ios/demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demo/main.m -------------------------------------------------------------------------------- /demo/ios/demoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demoTests/Info.plist -------------------------------------------------------------------------------- /demo/ios/demoTests/demoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/ios/demoTests/demoTests.m -------------------------------------------------------------------------------- /demo/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/metro.config.js -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/screenshot-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/screenshot-android.png -------------------------------------------------------------------------------- /demo/screenshot-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/screenshot-ios.png -------------------------------------------------------------------------------- /demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/demo/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/package.json -------------------------------------------------------------------------------- /src/fb-collage.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/src/fb-collage.component.tsx -------------------------------------------------------------------------------- /src/fb-collage.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/src/fb-collage.style.ts -------------------------------------------------------------------------------- /src/fb-collage.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/src/fb-collage.type.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meharbhutta/react-native-fb-collage/HEAD/yarn.lock --------------------------------------------------------------------------------