├── .gitignore ├── LICENSE ├── Mobile_App_Bootstrap ├── .babelrc ├── .buckconfig ├── .expo │ ├── packager-info.json │ └── settings.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Fontisto.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mobile_app_bootstrap │ │ │ │ ├── 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 ├── assets │ ├── Download.png │ ├── ExploreViz.png │ ├── HeaderLogo.png │ ├── HelpViz.png │ ├── JavaScriptLogo.png │ ├── ReactNativeLogo.png │ └── StoriesViz.png ├── index.js ├── ios │ ├── Mobile_App_Bootstrap-Bridging-Header.h │ ├── Mobile_App_Bootstrap-tvOS-Bridging-Header.h │ ├── Mobile_App_Bootstrap-tvOS │ │ └── Info.plist │ ├── Mobile_App_Bootstrap-tvOSTests │ │ └── Info.plist │ ├── Mobile_App_Bootstrap.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Mobile_App_Bootstrap-tvOS.xcscheme │ │ │ └── Mobile_App_Bootstrap.xcscheme │ ├── Mobile_App_Bootstrap.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Mobile_App_Bootstrap │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── Mobile_App_BootstrapTests │ │ ├── Info.plist │ │ └── Mobile_App_BootstrapTests.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package-lock.json ├── package.json └── src │ ├── router.js │ └── screens │ ├── CardDetails.js │ ├── Home.js │ ├── Viz1.js │ ├── Viz2.js │ └── Viz3.js └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/.babelrc -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/.buckconfig -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/.expo/packager-info.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/.expo/settings.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/.flowconfig -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/.gitignore -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/App.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/App.test.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/BUCK -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/build.gradle -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/java/com/mobile_app_bootstrap/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/java/com/mobile_app_bootstrap/MainActivity.java -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/java/com/mobile_app_bootstrap/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/java/com/mobile_app_bootstrap/MainApplication.java -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/build.gradle -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/gradle.properties -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/gradlew -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/gradlew.bat -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/keystores/BUCK -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/android/settings.gradle -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/app.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/Download.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/ExploreViz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/ExploreViz.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/HeaderLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/HeaderLogo.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/HelpViz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/HelpViz.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/JavaScriptLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/JavaScriptLogo.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/ReactNativeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/ReactNativeLogo.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/assets/StoriesViz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/assets/StoriesViz.png -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/index.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-Bridging-Header.h -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOS-Bridging-Header.h -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOS/Info.plist -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcshareddata/xcschemes/Mobile_App_Bootstrap-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcshareddata/xcschemes/Mobile_App_Bootstrap-tvOS.xcscheme -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcshareddata/xcschemes/Mobile_App_Bootstrap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcodeproj/xcshareddata/xcschemes/Mobile_App_Bootstrap.xcscheme -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/AppDelegate.h -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/AppDelegate.m -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/Info.plist -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_Bootstrap/main.m -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_BootstrapTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_BootstrapTests/Info.plist -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Mobile_App_BootstrapTests/Mobile_App_BootstrapTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Mobile_App_BootstrapTests/Mobile_App_BootstrapTests.m -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Podfile -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/ios/Podfile.lock -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/metro.config.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/package-lock.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/package.json -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/src/router.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/CardDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/src/screens/CardDetails.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/src/screens/Home.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Viz1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/src/screens/Viz1.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Viz2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/src/screens/Viz2.js -------------------------------------------------------------------------------- /Mobile_App_Bootstrap/src/screens/Viz3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/Mobile_App_Bootstrap/src/screens/Viz3.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tableau/mobile-app-bootstrap-react-native/HEAD/README.md --------------------------------------------------------------------------------