├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── syncrender │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.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 ├── index.android.js ├── index.ios.js ├── ios ├── RCCSyncRegistry.h ├── RCCSyncRegistry.m ├── RCCSyncRootView.h ├── RCCSyncRootView.m ├── SyncRender-tvOS │ └── Info.plist ├── SyncRender-tvOSTests │ └── Info.plist ├── SyncRender.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SyncRender-tvOS.xcscheme │ │ └── SyncRender.xcscheme ├── SyncRender │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── SyncRenderTests │ ├── Info.plist │ └── SyncRenderTests.m ├── WRNLabelManager.h ├── WRNLabelManager.m ├── WRNTestRenderModule.h └── WRNTestRenderModule.m ├── jsconfig.json ├── lib └── SyncRegistry.js └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/syncrender/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/java/com/syncrender/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/syncrender/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/java/com/syncrender/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SyncRender' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/RCCSyncRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/RCCSyncRegistry.h -------------------------------------------------------------------------------- /ios/RCCSyncRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/RCCSyncRegistry.m -------------------------------------------------------------------------------- /ios/RCCSyncRootView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/RCCSyncRootView.h -------------------------------------------------------------------------------- /ios/RCCSyncRootView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/RCCSyncRootView.m -------------------------------------------------------------------------------- /ios/SyncRender-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/SyncRender-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/SyncRender.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SyncRender.xcodeproj/xcshareddata/xcschemes/SyncRender-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender.xcodeproj/xcshareddata/xcschemes/SyncRender-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/SyncRender.xcodeproj/xcshareddata/xcschemes/SyncRender.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender.xcodeproj/xcshareddata/xcschemes/SyncRender.xcscheme -------------------------------------------------------------------------------- /ios/SyncRender/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender/AppDelegate.h -------------------------------------------------------------------------------- /ios/SyncRender/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender/AppDelegate.m -------------------------------------------------------------------------------- /ios/SyncRender/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/SyncRender/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/SyncRender/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender/Info.plist -------------------------------------------------------------------------------- /ios/SyncRender/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRender/main.m -------------------------------------------------------------------------------- /ios/SyncRenderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRenderTests/Info.plist -------------------------------------------------------------------------------- /ios/SyncRenderTests/SyncRenderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/SyncRenderTests/SyncRenderTests.m -------------------------------------------------------------------------------- /ios/WRNLabelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/WRNLabelManager.h -------------------------------------------------------------------------------- /ios/WRNLabelManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/WRNLabelManager.m -------------------------------------------------------------------------------- /ios/WRNTestRenderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/WRNTestRenderModule.h -------------------------------------------------------------------------------- /ios/WRNTestRenderModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/ios/WRNTestRenderModule.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/SyncRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/lib/SyncRegistry.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/rn-synchronous-render/HEAD/package.json --------------------------------------------------------------------------------