├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── .project ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── cwc_react_native │ │ │ ├── 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 └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── CwC_React_Native-tvOS │ └── Info.plist ├── CwC_React_Native-tvOSTests │ └── Info.plist ├── CwC_React_Native.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ ├── CwC_React_Native-tvOS.xcscheme │ │ └── CwC_React_Native.xcscheme ├── CwC_React_Native.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CwC_React_Native │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── CwC_React_NativeTests │ ├── CwC_React_NativeTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json └── src ├── assets └── cc_logo.png ├── home.js ├── playground.js └── styles ├── buttons.js ├── image.js ├── input.js ├── text.js └── wrapper.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/.project -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/cwc_react_native/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/main/java/com/cwc_react_native/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cwc_react_native/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/main/java/com/cwc_react_native/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/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/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/index.js -------------------------------------------------------------------------------- /ios/CwC_React_Native-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/CwC_React_Native-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcodeproj/xcshareddata/xcschemes/CwC_React_Native-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcodeproj/xcshareddata/xcschemes/CwC_React_Native-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcodeproj/xcshareddata/xcschemes/CwC_React_Native.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcodeproj/xcshareddata/xcschemes/CwC_React_Native.xcscheme -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/CwC_React_Native.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/CwC_React_Native/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/AppDelegate.h -------------------------------------------------------------------------------- /ios/CwC_React_Native/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/AppDelegate.m -------------------------------------------------------------------------------- /ios/CwC_React_Native/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/CwC_React_Native/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/CwC_React_Native/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/CwC_React_Native/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/Info.plist -------------------------------------------------------------------------------- /ios/CwC_React_Native/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_Native/main.m -------------------------------------------------------------------------------- /ios/CwC_React_NativeTests/CwC_React_NativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_NativeTests/CwC_React_NativeTests.m -------------------------------------------------------------------------------- /ios/CwC_React_NativeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/CwC_React_NativeTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/cc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/assets/cc_logo.png -------------------------------------------------------------------------------- /src/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/home.js -------------------------------------------------------------------------------- /src/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/playground.js -------------------------------------------------------------------------------- /src/styles/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/styles/buttons.js -------------------------------------------------------------------------------- /src/styles/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/styles/image.js -------------------------------------------------------------------------------- /src/styles/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/styles/input.js -------------------------------------------------------------------------------- /src/styles/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/styles/text.js -------------------------------------------------------------------------------- /src/styles/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflutterfactory/React-Native-Tutorials/HEAD/src/styles/wrapper.js --------------------------------------------------------------------------------