├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── greenMonkeys │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── whitelabeldemo │ │ │ │ └── WhiteLabelConfig.java │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── whitelabeldemo │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── WhiteLabelConfigPackage.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 │ │ └── purpleParrots │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── whitelabeldemo │ │ │ └── WhiteLabelConfig.java │ │ └── res │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── App.tsx ├── AppTheme.tsx └── whitelabel │ └── WhiteLabelConfig.tsx ├── babel.config.js ├── index.js ├── ios ├── GreenMonkeys.plist ├── GreenMonkeys │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Green_Monkeys-1024.png │ │ │ ├── Green_Monkeys-20.png │ │ │ ├── Green_Monkeys-20@2x.png │ │ │ ├── Green_Monkeys-20@3x.png │ │ │ ├── Green_Monkeys-29.png │ │ │ ├── Green_Monkeys-29@2x.png │ │ │ ├── Green_Monkeys-29@3x.png │ │ │ ├── Green_Monkeys-40.png │ │ │ ├── Green_Monkeys-40@2x.png │ │ │ ├── Green_Monkeys-40@3x.png │ │ │ ├── Green_Monkeys-60@2x.png │ │ │ ├── Green_Monkeys-60@3x.png │ │ │ ├── Green_Monkeys-76.png │ │ │ ├── Green_Monkeys-76@2x.png │ │ │ └── Green_Monkeys-83.5@2x.png │ │ └── Contents.json │ └── WhiteLabelConfig.m ├── Podfile ├── Podfile.lock ├── PurpleParrots │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Purple_Parrots-1024.png │ │ │ ├── Purple_Parrots-20.png │ │ │ ├── Purple_Parrots-20@2x.png │ │ │ ├── Purple_Parrots-20@3x.png │ │ │ ├── Purple_Parrots-29.png │ │ │ ├── Purple_Parrots-29@2x.png │ │ │ ├── Purple_Parrots-29@3x.png │ │ │ ├── Purple_Parrots-40.png │ │ │ ├── Purple_Parrots-40@2x.png │ │ │ ├── Purple_Parrots-40@3x.png │ │ │ ├── Purple_Parrots-60@2x.png │ │ │ ├── Purple_Parrots-60@3x.png │ │ │ ├── Purple_Parrots-76.png │ │ │ ├── Purple_Parrots-76@2x.png │ │ │ └── Purple_Parrots-83.5@2x.png │ │ └── Contents.json │ └── WhiteLabelConfig.m ├── WhiteLabelConfig.h ├── WhiteLabelDemo-tvOS │ └── Info.plist ├── WhiteLabelDemo-tvOSTests │ └── Info.plist ├── WhiteLabelDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── GreenMonkeys.xcscheme │ │ ├── PurpleParrots.xcscheme │ │ └── WhiteLabelDemo-tvOS.xcscheme ├── WhiteLabelDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── WhiteLabelDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Info.plist │ └── main.m └── WhiteLabelDemoTests │ ├── Info.plist │ └── WhiteLabelDemoTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.jest.json ├── tsconfig.json └── tslint.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/java/com/whitelabeldemo/WhiteLabelConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/java/com/whitelabeldemo/WhiteLabelConfig.java -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/greenMonkeys/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/greenMonkeys/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/whitelabeldemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/java/com/whitelabeldemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/whitelabeldemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/java/com/whitelabeldemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/whitelabeldemo/WhiteLabelConfigPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/java/com/whitelabeldemo/WhiteLabelConfigPackage.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/purpleParrots/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/java/com/whitelabeldemo/WhiteLabelConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/java/com/whitelabeldemo/WhiteLabelConfig.java -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/purpleParrots/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/app/src/purpleParrots/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/app.json -------------------------------------------------------------------------------- /app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/app/App.tsx -------------------------------------------------------------------------------- /app/AppTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/app/AppTheme.tsx -------------------------------------------------------------------------------- /app/whitelabel/WhiteLabelConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/app/whitelabel/WhiteLabelConfig.tsx -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/index.js -------------------------------------------------------------------------------- /ios/GreenMonkeys.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys.plist -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-1024.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-20.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-20@2x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-20@3x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-29.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-29@2x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-29@3x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-40.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-40@2x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-40@3x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-60@2x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-60@3x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-76.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-76@2x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/AppIcon.appiconset/Green_Monkeys-83.5@2x.png -------------------------------------------------------------------------------- /ios/GreenMonkeys/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/GreenMonkeys/WhiteLabelConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/GreenMonkeys/WhiteLabelConfig.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-1024.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-20.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-20@2x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-20@3x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-29.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-29@2x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-29@3x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-40.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-40@2x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-40@3x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-60@2x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-60@3x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-76.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-76@2x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/AppIcon.appiconset/Purple_Parrots-83.5@2x.png -------------------------------------------------------------------------------- /ios/PurpleParrots/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/PurpleParrots/WhiteLabelConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/PurpleParrots/WhiteLabelConfig.m -------------------------------------------------------------------------------- /ios/WhiteLabelConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelConfig.h -------------------------------------------------------------------------------- /ios/WhiteLabelDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/WhiteLabelDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcodeproj/xcshareddata/xcschemes/GreenMonkeys.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcodeproj/xcshareddata/xcschemes/GreenMonkeys.xcscheme -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcodeproj/xcshareddata/xcschemes/PurpleParrots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcodeproj/xcshareddata/xcschemes/PurpleParrots.xcscheme -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcodeproj/xcshareddata/xcschemes/WhiteLabelDemo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcodeproj/xcshareddata/xcschemes/WhiteLabelDemo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/WhiteLabelDemo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/WhiteLabelDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/WhiteLabelDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/WhiteLabelDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/WhiteLabelDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo/Info.plist -------------------------------------------------------------------------------- /ios/WhiteLabelDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemo/main.m -------------------------------------------------------------------------------- /ios/WhiteLabelDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemoTests/Info.plist -------------------------------------------------------------------------------- /ios/WhiteLabelDemoTests/WhiteLabelDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/ios/WhiteLabelDemoTests/WhiteLabelDemoTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/jest.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flopshot/ReactNative_WhiteLabelDemo/HEAD/tslint.json --------------------------------------------------------------------------------