├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── Views ├── Bag │ └── index.js ├── Brand │ └── index.js ├── Home │ └── index.js ├── Profile │ └── index.js └── Wishlist │ └── index.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 │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── reactnavigationtabs │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── components └── tabBar.js ├── index.js ├── ios ├── reactNavigationTabs-tvOS │ └── Info.plist ├── reactNavigationTabs-tvOSTests │ └── Info.plist ├── reactNavigationTabs.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactNavigationTabs-tvOS.xcscheme │ │ └── reactNavigationTabs.xcscheme ├── reactNavigationTabs │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactNavigationTabsTests │ ├── Info.plist │ └── reactNavigationTabsTests.m ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["module:metro-react-native-babel-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | esproposal.optional_chaining=enable 33 | esproposal.nullish_coalescing=enable 34 | 35 | module.system=haste 36 | module.system.haste.use_name_reducers=true 37 | # get basename 38 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 39 | # strip .js or .js.flow suffix 40 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 41 | # strip .ios suffix 42 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 44 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 45 | module.system.haste.paths.blacklist=.*/__tests__/.* 46 | module.system.haste.paths.blacklist=.*/__mocks__/.* 47 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 48 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 49 | 50 | munge_underscores=true 51 | 52 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 53 | 54 | module.file_ext=.js 55 | module.file_ext=.jsx 56 | module.file_ext=.json 57 | module.file_ext=.native.js 58 | 59 | suppress_type=$FlowIssue 60 | suppress_type=$FlowFixMe 61 | suppress_type=$FlowFixMeProps 62 | suppress_type=$FlowFixMeState 63 | 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 67 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 68 | 69 | [version] 70 | ^0.78.0 71 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Button, View, Text, SafeAreaView, TouchableWithoutFeedback, StyleSheet } from "react-native"; 3 | import Ionicons from 'react-native-vector-icons/FontAwesome'; 4 | 5 | import { 6 | createBottomTabNavigator, 7 | createStackNavigator, 8 | createAppContainer, 9 | createDrawerNavigator 10 | } from 'react-navigation'; 11 | 12 | import Home from './views/Home'; 13 | import Brand from './views/Brand'; 14 | import Bag from './views/Bag'; 15 | import Wishlist from './views/Wishlist'; 16 | import Profile from './views/Profile'; 17 | 18 | import TabBar from './components/tabBar'; 19 | 20 | 21 | /* declaration of stacks */ 22 | const HomeStack = createStackNavigator({ 23 | home: Home 24 | }) 25 | const BrandStack = createStackNavigator({ 26 | brand: Brand 27 | }) 28 | const BagStack = createStackNavigator({ 29 | bag: Bag 30 | }) 31 | const WishlistStack = createStackNavigator({ 32 | wishlist: Wishlist 33 | }) 34 | const ProfileStack = createStackNavigator({ 35 | profile: Profile 36 | }) 37 | 38 | const Tabs = createBottomTabNavigator( 39 | { 40 | Home: HomeStack, 41 | Brand: BrandStack, 42 | Bag: BagStack, 43 | Wishlist: WishlistStack, 44 | Profile: ProfileStack 45 | },{ 46 | defaultNavigationOptions: ({ navigation }) => ({ 47 | tabBarIcon: ({ focused, horizontal, tintColor }) => { 48 | const { routeName } = navigation.state; 49 | let iconName; 50 | if (routeName === 'Home') { 51 | iconName = `home`; 52 | } else if (routeName === 'Brand') { 53 | iconName = `star`; 54 | } else if (routeName === 'Bag') { 55 | iconName = `shopping-bag`; 56 | } else if (routeName === 'Wishlist') { 57 | iconName = `heart`; 58 | } else if (routeName === 'Profile') { 59 | iconName = `user`; 60 | } 61 | 62 | return ; 63 | }, 64 | }), 65 | tabBarComponent: (props) => , 66 | tabBarOptions: { 67 | tabFeatured: 'Bag', 68 | backgroundFeaturedIcon: '#D7465A', 69 | activeFeaturedTintColor: 'skyblue', 70 | inactiveFeatureTintColor: 'white', 71 | showLabel: true, 72 | activeTintColor: '#D7465A', 73 | inactiveTintColor: '#E1E3DB', 74 | style: { 75 | height: 80, 76 | backgroundColor: '#FFFFFF', 77 | borderTopWidth: 1, 78 | borderTopColor: '#F2F3EF' 79 | }, 80 | tabStyle: {} 81 | } 82 | }); 83 | 84 | export default createAppContainer(createDrawerNavigator( 85 | { 86 | Tabs: { 87 | screen: Tabs 88 | } 89 | } 90 | 91 | )) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Navigation custom tabBar 2 | 3 | Custom bottom tab bar for the navigation component react-navigation. 4 | 5 | ## Simple bottom TabBar 6 | 7 | simple react navigation tab bar 8 | 9 | Todo: 10 | 11 | - [ ] Make a UI library with every style. 12 | - [ ] Testing. 13 | - [ ] Deploy. 14 | 15 | Thanks 16 | ------ 17 | 18 | **Mario Diez** © 2018+, Mario Diez. Released under the [MIT License].
19 | Authored and maintained by Mario Diez. 20 | 21 | > [mariodiezgarcia.com](http://www.mariodiezgarcia.com)  ·  22 | > GitHub [@mariodev12](https://github.com/mariodev12)  ·  23 | > Youtube [@mariodiezoficial](https://www.youtube.com/channel/UCisGMoxaVxJMcbio2FBHORg)  ·  24 | > Twitter [@mariodev_](https://twitter.com/mariodev_) 25 | 26 | [MIT License]: http://mit-license.org/ 27 | -------------------------------------------------------------------------------- /Views/Bag/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native' 6 | 7 | class Bag extends Component { 8 | render() { 9 | return ( 10 | 11 | Bag 12 | 13 | ); 14 | } 15 | } 16 | 17 | export default Bag; -------------------------------------------------------------------------------- /Views/Brand/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native' 6 | 7 | class Brand extends Component { 8 | render() { 9 | return ( 10 | 11 | Brand 12 | 13 | ); 14 | } 15 | } 16 | 17 | export default Brand; -------------------------------------------------------------------------------- /Views/Home/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native' 6 | 7 | class Home extends Component { 8 | render() { 9 | return ( 10 | 11 | Home 12 | 13 | ); 14 | } 15 | } 16 | 17 | export default Home; -------------------------------------------------------------------------------- /Views/Profile/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native' 6 | 7 | class Profile extends Component { 8 | render() { 9 | return ( 10 | 11 | Profile 12 | 13 | ); 14 | } 15 | } 16 | 17 | export default Profile; -------------------------------------------------------------------------------- /Views/Wishlist/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native' 6 | 7 | class Whishlist extends Component { 8 | render() { 9 | return ( 10 | 11 | Whishlist 12 | 13 | ); 14 | } 15 | } 16 | 17 | export default Whishlist; -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.reactnavigationtabs", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.reactnavigationtabs", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | buildToolsVersion rootProject.ext.buildToolsVersion 99 | 100 | defaultConfig { 101 | applicationId "com.reactnavigationtabs" 102 | minSdkVersion rootProject.ext.minSdkVersion 103 | targetSdkVersion rootProject.ext.targetSdkVersion 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile project(':react-native-vector-icons') 141 | compile project(':react-native-gesture-handler') 142 | implementation fileTree(dir: "libs", include: ["*.jar"]) 143 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 144 | implementation "com.facebook.react:react-native:+" // From node_modules 145 | } 146 | 147 | // Run this once to be able to run the application with BUCK 148 | // puts all compile dependencies into folder libs for BUCK to use 149 | task copyDownloadableDepsToLibs(type: Copy) { 150 | from configurations.compile 151 | into 'libs' 152 | } 153 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationtabs/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnavigationtabs; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "reactNavigationTabs"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationtabs/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnavigationtabs; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | public boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage(), 28 | new VectorIconsPackage(), 29 | new RNGestureHandlerPackage() 30 | ); 31 | } 32 | 33 | @Override 34 | protected String getJSMainModuleName() { 35 | return "index"; 36 | } 37 | }; 38 | 39 | @Override 40 | public ReactNativeHost getReactNativeHost() { 41 | return mReactNativeHost; 42 | } 43 | 44 | @Override 45 | public void onCreate() { 46 | super.onCreate(); 47 | SoLoader.init(this, /* native exopackage */ false); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/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/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | reactNavigationTabs 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "27.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 27 8 | targetSdkVersion = 26 9 | supportLibVersion = "27.1.1" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath 'com.android.tools.build:gradle:3.1.4' 17 | 18 | // NOTE: Do not place your application dependencies here; they belong 19 | // in the individual module build.gradle files 20 | } 21 | } 22 | 23 | allprojects { 24 | repositories { 25 | mavenLocal() 26 | google() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | 35 | 36 | task wrapper(type: Wrapper) { 37 | gradleVersion = '4.4' 38 | distributionUrl = distributionUrl.replace("bin", "all") 39 | } 40 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uify/react-navigation-custom-tabBar/77607fe0e9bb6d88cbcb82661cc920840ebfe925/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'reactNavigationTabs' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | include ':react-native-gesture-handler' 5 | project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') 6 | 7 | include ':app' 8 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNavigationTabs", 3 | "displayName": "reactNavigationTabs" 4 | } -------------------------------------------------------------------------------- /components/tabBar.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { 3 | SafeAreaView, 4 | View, 5 | TouchableWithoutFeedback, 6 | StyleSheet, 7 | Text 8 | } from 'react-native' 9 | 10 | const TabBar = (props) => { 11 | console.log(props) 12 | const { 13 | navigation: {state: {index, routes}}, 14 | getLabelText, 15 | style, 16 | activeTintColor, 17 | inactiveTintColor, 18 | renderIcon, 19 | jumpTo, 20 | showLabel, 21 | backgroundFeaturedIcon, 22 | tabFeatured, 23 | activeFeaturedTintColor, 24 | inactiveFeatureTintColor 25 | } = props; 26 | return ( 27 | 33 | { 34 | routes.map((route, idx) => ( 35 | 43 | jumpTo(route.key)} 45 | > 46 | 47 | 48 | {renderIcon({ 49 | route, 50 | focused: index === idx, 51 | tintColor: index === idx ? 52 | route.key !== tabFeatured ? 53 | activeTintColor 54 | : 55 | activeFeaturedTintColor 56 | : 57 | route.key !== tabFeatured ? 58 | inactiveTintColor 59 | : 60 | inactiveFeatureTintColor 61 | })} 62 | 63 | {} 64 | 65 | {showLabel ? 66 | {route.key !== tabFeatured ? getLabelText({ 67 | route, 68 | }) : null} 69 | : null} 70 | 71 | 72 | 73 | )) 74 | } 75 | 76 | ); 77 | } 78 | const styles = StyleSheet.create({ 79 | customIcon: { 80 | height: 60, 81 | width: 60, 82 | justifyContent: 'center', 83 | alignItems: 'center', 84 | borderRadius: 50, 85 | transform: [ 86 | { translateY: -20} 87 | ] 88 | }, 89 | iconContainer: { 90 | justifyContent: 'center', 91 | alignItems: 'center' 92 | }, 93 | iconLabel: { 94 | fontSize: 9, 95 | fontWeight: '600' 96 | } 97 | }) 98 | 99 | export default TabBar; -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** @format */ 2 | 3 | import {AppRegistry} from 'react-native'; 4 | import App from './App'; 5 | import {name as appName} from './app.json'; 6 | 7 | AppRegistry.registerComponent(appName, () => App); 8 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* reactNavigationTabsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactNavigationTabsTests.m */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* reactNavigationTabsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactNavigationTabsTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | 3E7F1712F5EB46C3A557A796 /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BC064BF0A4243378159A32D /* libRNGestureHandler.a */; }; 41 | 9C72D4E53627454BA053E800 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EABBCEB4FBF54B7099D9AF8D /* libRNVectorIcons.a */; }; 42 | B325E87A0B3B495189E977F9 /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 98CAA0B7C235455E89694381 /* libRNVectorIcons-tvOS.a */; }; 43 | 6AC3EAB7F385400AA3EFC09A /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B474711D5D9B441098C9DAD0 /* AntDesign.ttf */; }; 44 | E84142227778498BA711719D /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CBABFF2C712546F89F5AD210 /* Entypo.ttf */; }; 45 | 71B0BB5F6CC94CBFA62D5156 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 58372E18D2134A1B984847DC /* EvilIcons.ttf */; }; 46 | 78A71E36170046978155ACD2 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F554C1253BC94358ABA5C3F4 /* Feather.ttf */; }; 47 | 24D77AF46C694BE1A106E98D /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0CFBC18719714B8690565508 /* FontAwesome.ttf */; }; 48 | 312EBAB4EBD047FDA4FDABF9 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9CAA604A451348768BD233FE /* FontAwesome5_Brands.ttf */; }; 49 | 1C12D4E26A4347AD88292FA0 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 943618B4159845949DEF73CA /* FontAwesome5_Regular.ttf */; }; 50 | BA586A4FF35D45D1B6B6A620 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3052E81D3BE7481F98495BFD /* FontAwesome5_Solid.ttf */; }; 51 | CFDE0169D3FF4039B28AA6E5 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0E807108DD4B4F728A283D3B /* Foundation.ttf */; }; 52 | D7B8E074EDF74E2A99660E00 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3C11B135AD9243C1BBFB6511 /* Ionicons.ttf */; }; 53 | C68BF8B2C0B84951AEDA1023 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 972C63FF5F67454E878CD95F /* MaterialCommunityIcons.ttf */; }; 54 | D5077B1B66044E63AE72ECFA /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3710D667D7E54B93AAF93660 /* MaterialIcons.ttf */; }; 55 | E154C6D30CB2424EB4BE4E04 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 59FD140F73FD425F80D046FB /* Octicons.ttf */; }; 56 | 93C94B1571AD477193AF7AA0 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F1C86034CE83439489C318E5 /* SimpleLineIcons.ttf */; }; 57 | 4E5410100957454CA0921047 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 56DB9B022A694A75BBDCFF69 /* Zocial.ttf */; }; 58 | /* End PBXBuildFile section */ 59 | 60 | /* Begin PBXContainerItemProxy section */ 61 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 62 | isa = PBXContainerItemProxy; 63 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 64 | proxyType = 2; 65 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 66 | remoteInfo = RCTActionSheet; 67 | }; 68 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 69 | isa = PBXContainerItemProxy; 70 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 71 | proxyType = 2; 72 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 73 | remoteInfo = RCTGeolocation; 74 | }; 75 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 76 | isa = PBXContainerItemProxy; 77 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 78 | proxyType = 2; 79 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 80 | remoteInfo = RCTImage; 81 | }; 82 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 83 | isa = PBXContainerItemProxy; 84 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 85 | proxyType = 2; 86 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 87 | remoteInfo = RCTNetwork; 88 | }; 89 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 90 | isa = PBXContainerItemProxy; 91 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 92 | proxyType = 2; 93 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 94 | remoteInfo = RCTVibration; 95 | }; 96 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 97 | isa = PBXContainerItemProxy; 98 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 99 | proxyType = 1; 100 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 101 | remoteInfo = reactNavigationTabs; 102 | }; 103 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 104 | isa = PBXContainerItemProxy; 105 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 106 | proxyType = 2; 107 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 108 | remoteInfo = RCTSettings; 109 | }; 110 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 111 | isa = PBXContainerItemProxy; 112 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 113 | proxyType = 2; 114 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 115 | remoteInfo = RCTWebSocket; 116 | }; 117 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 118 | isa = PBXContainerItemProxy; 119 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 120 | proxyType = 2; 121 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 122 | remoteInfo = React; 123 | }; 124 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 125 | isa = PBXContainerItemProxy; 126 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 127 | proxyType = 1; 128 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 129 | remoteInfo = "reactNavigationTabs-tvOS"; 130 | }; 131 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 132 | isa = PBXContainerItemProxy; 133 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 134 | proxyType = 2; 135 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 136 | remoteInfo = "RCTBlob-tvOS"; 137 | }; 138 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 139 | isa = PBXContainerItemProxy; 140 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 141 | proxyType = 2; 142 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 143 | remoteInfo = fishhook; 144 | }; 145 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 146 | isa = PBXContainerItemProxy; 147 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 148 | proxyType = 2; 149 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 150 | remoteInfo = "fishhook-tvOS"; 151 | }; 152 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 153 | isa = PBXContainerItemProxy; 154 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 155 | proxyType = 2; 156 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 157 | remoteInfo = jsinspector; 158 | }; 159 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 160 | isa = PBXContainerItemProxy; 161 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 162 | proxyType = 2; 163 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 164 | remoteInfo = "jsinspector-tvOS"; 165 | }; 166 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 167 | isa = PBXContainerItemProxy; 168 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 169 | proxyType = 2; 170 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 171 | remoteInfo = "third-party"; 172 | }; 173 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 174 | isa = PBXContainerItemProxy; 175 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 176 | proxyType = 2; 177 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 178 | remoteInfo = "third-party-tvOS"; 179 | }; 180 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 181 | isa = PBXContainerItemProxy; 182 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 183 | proxyType = 2; 184 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 185 | remoteInfo = "double-conversion"; 186 | }; 187 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 188 | isa = PBXContainerItemProxy; 189 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 190 | proxyType = 2; 191 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 192 | remoteInfo = "double-conversion-tvOS"; 193 | }; 194 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 195 | isa = PBXContainerItemProxy; 196 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 197 | proxyType = 2; 198 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 199 | remoteInfo = privatedata; 200 | }; 201 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 202 | isa = PBXContainerItemProxy; 203 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 204 | proxyType = 2; 205 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 206 | remoteInfo = "privatedata-tvOS"; 207 | }; 208 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 209 | isa = PBXContainerItemProxy; 210 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 211 | proxyType = 2; 212 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 213 | remoteInfo = "RCTImage-tvOS"; 214 | }; 215 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 216 | isa = PBXContainerItemProxy; 217 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 218 | proxyType = 2; 219 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 220 | remoteInfo = "RCTLinking-tvOS"; 221 | }; 222 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 223 | isa = PBXContainerItemProxy; 224 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 225 | proxyType = 2; 226 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 227 | remoteInfo = "RCTNetwork-tvOS"; 228 | }; 229 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 230 | isa = PBXContainerItemProxy; 231 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 232 | proxyType = 2; 233 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 234 | remoteInfo = "RCTSettings-tvOS"; 235 | }; 236 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 237 | isa = PBXContainerItemProxy; 238 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 239 | proxyType = 2; 240 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 241 | remoteInfo = "RCTText-tvOS"; 242 | }; 243 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 244 | isa = PBXContainerItemProxy; 245 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 246 | proxyType = 2; 247 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 248 | remoteInfo = "RCTWebSocket-tvOS"; 249 | }; 250 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 251 | isa = PBXContainerItemProxy; 252 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 253 | proxyType = 2; 254 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 255 | remoteInfo = "React-tvOS"; 256 | }; 257 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 258 | isa = PBXContainerItemProxy; 259 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 260 | proxyType = 2; 261 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 262 | remoteInfo = yoga; 263 | }; 264 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 265 | isa = PBXContainerItemProxy; 266 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 267 | proxyType = 2; 268 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 269 | remoteInfo = "yoga-tvOS"; 270 | }; 271 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 272 | isa = PBXContainerItemProxy; 273 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 274 | proxyType = 2; 275 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 276 | remoteInfo = cxxreact; 277 | }; 278 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 279 | isa = PBXContainerItemProxy; 280 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 281 | proxyType = 2; 282 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 283 | remoteInfo = "cxxreact-tvOS"; 284 | }; 285 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 286 | isa = PBXContainerItemProxy; 287 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 288 | proxyType = 2; 289 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 290 | remoteInfo = jschelpers; 291 | }; 292 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 293 | isa = PBXContainerItemProxy; 294 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 295 | proxyType = 2; 296 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 297 | remoteInfo = "jschelpers-tvOS"; 298 | }; 299 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 300 | isa = PBXContainerItemProxy; 301 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 302 | proxyType = 2; 303 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 304 | remoteInfo = RCTAnimation; 305 | }; 306 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 307 | isa = PBXContainerItemProxy; 308 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 309 | proxyType = 2; 310 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 311 | remoteInfo = "RCTAnimation-tvOS"; 312 | }; 313 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 314 | isa = PBXContainerItemProxy; 315 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 316 | proxyType = 2; 317 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 318 | remoteInfo = RCTLinking; 319 | }; 320 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 321 | isa = PBXContainerItemProxy; 322 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 323 | proxyType = 2; 324 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 325 | remoteInfo = RCTText; 326 | }; 327 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 328 | isa = PBXContainerItemProxy; 329 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 330 | proxyType = 2; 331 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 332 | remoteInfo = RCTBlob; 333 | }; 334 | /* End PBXContainerItemProxy section */ 335 | 336 | /* Begin PBXFileReference section */ 337 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 338 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 339 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 340 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 341 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 342 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 343 | 00E356EE1AD99517003FC87E /* reactNavigationTabsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = reactNavigationTabsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 344 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 345 | 00E356F21AD99517003FC87E /* reactNavigationTabsTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reactNavigationTabsTests.m; sourceTree = ""; }; 346 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 347 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 348 | 13B07F961A680F5B00A75B9A /* reactNavigationTabs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactNavigationTabs.app; sourceTree = BUILT_PRODUCTS_DIR; }; 349 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactNavigationTabs/AppDelegate.h; sourceTree = ""; }; 350 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = reactNavigationTabs/AppDelegate.m; sourceTree = ""; }; 351 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 352 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactNavigationTabs/Images.xcassets; sourceTree = ""; }; 353 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactNavigationTabs/Info.plist; sourceTree = ""; }; 354 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactNavigationTabs/main.m; sourceTree = ""; }; 355 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 356 | 2D02E47B1E0B4A5D006451C7 /* reactNavigationTabs-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "reactNavigationTabs-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 357 | 2D02E4901E0B4A5D006451C7 /* reactNavigationTabs-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "reactNavigationTabs-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 358 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 359 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 360 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 361 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 362 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 363 | B81D3CA7B1D3464389FB745E /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; name = "RNGestureHandler.xcodeproj"; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 364 | 0BC064BF0A4243378159A32D /* libRNGestureHandler.a */ = {isa = PBXFileReference; name = "libRNGestureHandler.a"; path = "libRNGestureHandler.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 365 | CB8D9C1ABC354D2C9BDC4432 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 366 | EABBCEB4FBF54B7099D9AF8D /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 367 | 98CAA0B7C235455E89694381 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; name = "libRNVectorIcons-tvOS.a"; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 368 | B474711D5D9B441098C9DAD0 /* AntDesign.ttf */ = {isa = PBXFileReference; name = "AntDesign.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 369 | CBABFF2C712546F89F5AD210 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 370 | 58372E18D2134A1B984847DC /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 371 | F554C1253BC94358ABA5C3F4 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 372 | 0CFBC18719714B8690565508 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 373 | 9CAA604A451348768BD233FE /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 374 | 943618B4159845949DEF73CA /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 375 | 3052E81D3BE7481F98495BFD /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 376 | 0E807108DD4B4F728A283D3B /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 377 | 3C11B135AD9243C1BBFB6511 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 378 | 972C63FF5F67454E878CD95F /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 379 | 3710D667D7E54B93AAF93660 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 380 | 59FD140F73FD425F80D046FB /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 381 | F1C86034CE83439489C318E5 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 382 | 56DB9B022A694A75BBDCFF69 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 383 | /* End PBXFileReference section */ 384 | 385 | /* Begin PBXFrameworksBuildPhase section */ 386 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 387 | isa = PBXFrameworksBuildPhase; 388 | buildActionMask = 2147483647; 389 | files = ( 390 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 391 | ); 392 | runOnlyForDeploymentPostprocessing = 0; 393 | }; 394 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 395 | isa = PBXFrameworksBuildPhase; 396 | buildActionMask = 2147483647; 397 | files = ( 398 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 399 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 400 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 401 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 402 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 403 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 404 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 405 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 406 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 407 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 408 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 409 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 410 | 3E7F1712F5EB46C3A557A796 /* libRNGestureHandler.a in Frameworks */, 411 | 9C72D4E53627454BA053E800 /* libRNVectorIcons.a in Frameworks */, 412 | ); 413 | runOnlyForDeploymentPostprocessing = 0; 414 | }; 415 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 416 | isa = PBXFrameworksBuildPhase; 417 | buildActionMask = 2147483647; 418 | files = ( 419 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 420 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 421 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 422 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 423 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 424 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 425 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 426 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 427 | B325E87A0B3B495189E977F9 /* libRNVectorIcons-tvOS.a in Frameworks */, 428 | ); 429 | runOnlyForDeploymentPostprocessing = 0; 430 | }; 431 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 432 | isa = PBXFrameworksBuildPhase; 433 | buildActionMask = 2147483647; 434 | files = ( 435 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 436 | ); 437 | runOnlyForDeploymentPostprocessing = 0; 438 | }; 439 | /* End PBXFrameworksBuildPhase section */ 440 | 441 | /* Begin PBXGroup section */ 442 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 443 | isa = PBXGroup; 444 | children = ( 445 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 446 | ); 447 | name = Products; 448 | sourceTree = ""; 449 | }; 450 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 454 | ); 455 | name = Products; 456 | sourceTree = ""; 457 | }; 458 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 459 | isa = PBXGroup; 460 | children = ( 461 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 462 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 463 | ); 464 | name = Products; 465 | sourceTree = ""; 466 | }; 467 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 468 | isa = PBXGroup; 469 | children = ( 470 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 471 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 472 | ); 473 | name = Products; 474 | sourceTree = ""; 475 | }; 476 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 477 | isa = PBXGroup; 478 | children = ( 479 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 480 | ); 481 | name = Products; 482 | sourceTree = ""; 483 | }; 484 | 00E356EF1AD99517003FC87E /* reactNavigationTabsTests */ = { 485 | isa = PBXGroup; 486 | children = ( 487 | 00E356F21AD99517003FC87E /* reactNavigationTabsTests.m */, 488 | 00E356F01AD99517003FC87E /* Supporting Files */, 489 | ); 490 | path = reactNavigationTabsTests; 491 | sourceTree = ""; 492 | }; 493 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 00E356F11AD99517003FC87E /* Info.plist */, 497 | ); 498 | name = "Supporting Files"; 499 | sourceTree = ""; 500 | }; 501 | 139105B71AF99BAD00B5F7CC /* Products */ = { 502 | isa = PBXGroup; 503 | children = ( 504 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 505 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 506 | ); 507 | name = Products; 508 | sourceTree = ""; 509 | }; 510 | 139FDEE71B06529A00C62182 /* Products */ = { 511 | isa = PBXGroup; 512 | children = ( 513 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 514 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 515 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 516 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 517 | ); 518 | name = Products; 519 | sourceTree = ""; 520 | }; 521 | 13B07FAE1A68108700A75B9A /* reactNavigationTabs */ = { 522 | isa = PBXGroup; 523 | children = ( 524 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 525 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 526 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 527 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 528 | 13B07FB61A68108700A75B9A /* Info.plist */, 529 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 530 | 13B07FB71A68108700A75B9A /* main.m */, 531 | ); 532 | name = reactNavigationTabs; 533 | sourceTree = ""; 534 | }; 535 | 146834001AC3E56700842450 /* Products */ = { 536 | isa = PBXGroup; 537 | children = ( 538 | 146834041AC3E56700842450 /* libReact.a */, 539 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 540 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 541 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 542 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 543 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 544 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 545 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 546 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 547 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 548 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 549 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 550 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 551 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 552 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 553 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 554 | ); 555 | name = Products; 556 | sourceTree = ""; 557 | }; 558 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 559 | isa = PBXGroup; 560 | children = ( 561 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 562 | ); 563 | name = Frameworks; 564 | sourceTree = ""; 565 | }; 566 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 567 | isa = PBXGroup; 568 | children = ( 569 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 570 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 571 | ); 572 | name = Products; 573 | sourceTree = ""; 574 | }; 575 | 78C398B11ACF4ADC00677621 /* Products */ = { 576 | isa = PBXGroup; 577 | children = ( 578 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 579 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 580 | ); 581 | name = Products; 582 | sourceTree = ""; 583 | }; 584 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 585 | isa = PBXGroup; 586 | children = ( 587 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 588 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 589 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 590 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 591 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 592 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 593 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 594 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 595 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 596 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 597 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 598 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 599 | B81D3CA7B1D3464389FB745E /* RNGestureHandler.xcodeproj */, 600 | CB8D9C1ABC354D2C9BDC4432 /* RNVectorIcons.xcodeproj */, 601 | ); 602 | name = Libraries; 603 | sourceTree = ""; 604 | }; 605 | 832341B11AAA6A8300B99B32 /* Products */ = { 606 | isa = PBXGroup; 607 | children = ( 608 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 609 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 610 | ); 611 | name = Products; 612 | sourceTree = ""; 613 | }; 614 | 83CBB9F61A601CBA00E9B192 = { 615 | isa = PBXGroup; 616 | children = ( 617 | 13B07FAE1A68108700A75B9A /* reactNavigationTabs */, 618 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 619 | 00E356EF1AD99517003FC87E /* reactNavigationTabsTests */, 620 | 83CBBA001A601CBA00E9B192 /* Products */, 621 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 622 | 819585DD090E43EEAADC49D6 /* Resources */, 623 | ); 624 | indentWidth = 2; 625 | sourceTree = ""; 626 | tabWidth = 2; 627 | usesTabs = 0; 628 | }; 629 | 83CBBA001A601CBA00E9B192 /* Products */ = { 630 | isa = PBXGroup; 631 | children = ( 632 | 13B07F961A680F5B00A75B9A /* reactNavigationTabs.app */, 633 | 00E356EE1AD99517003FC87E /* reactNavigationTabsTests.xctest */, 634 | 2D02E47B1E0B4A5D006451C7 /* reactNavigationTabs-tvOS.app */, 635 | 2D02E4901E0B4A5D006451C7 /* reactNavigationTabs-tvOSTests.xctest */, 636 | ); 637 | name = Products; 638 | sourceTree = ""; 639 | }; 640 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 641 | isa = PBXGroup; 642 | children = ( 643 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 644 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 645 | ); 646 | name = Products; 647 | sourceTree = ""; 648 | }; 649 | 819585DD090E43EEAADC49D6 /* Resources */ = { 650 | isa = "PBXGroup"; 651 | children = ( 652 | B474711D5D9B441098C9DAD0 /* AntDesign.ttf */, 653 | CBABFF2C712546F89F5AD210 /* Entypo.ttf */, 654 | 58372E18D2134A1B984847DC /* EvilIcons.ttf */, 655 | F554C1253BC94358ABA5C3F4 /* Feather.ttf */, 656 | 0CFBC18719714B8690565508 /* FontAwesome.ttf */, 657 | 9CAA604A451348768BD233FE /* FontAwesome5_Brands.ttf */, 658 | 943618B4159845949DEF73CA /* FontAwesome5_Regular.ttf */, 659 | 3052E81D3BE7481F98495BFD /* FontAwesome5_Solid.ttf */, 660 | 0E807108DD4B4F728A283D3B /* Foundation.ttf */, 661 | 3C11B135AD9243C1BBFB6511 /* Ionicons.ttf */, 662 | 972C63FF5F67454E878CD95F /* MaterialCommunityIcons.ttf */, 663 | 3710D667D7E54B93AAF93660 /* MaterialIcons.ttf */, 664 | 59FD140F73FD425F80D046FB /* Octicons.ttf */, 665 | F1C86034CE83439489C318E5 /* SimpleLineIcons.ttf */, 666 | 56DB9B022A694A75BBDCFF69 /* Zocial.ttf */, 667 | ); 668 | name = Resources; 669 | sourceTree = ""; 670 | path = ""; 671 | }; 672 | /* End PBXGroup section */ 673 | 674 | /* Begin PBXNativeTarget section */ 675 | 00E356ED1AD99517003FC87E /* reactNavigationTabsTests */ = { 676 | isa = PBXNativeTarget; 677 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactNavigationTabsTests" */; 678 | buildPhases = ( 679 | 00E356EA1AD99517003FC87E /* Sources */, 680 | 00E356EB1AD99517003FC87E /* Frameworks */, 681 | 00E356EC1AD99517003FC87E /* Resources */, 682 | ); 683 | buildRules = ( 684 | ); 685 | dependencies = ( 686 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 687 | ); 688 | name = reactNavigationTabsTests; 689 | productName = reactNavigationTabsTests; 690 | productReference = 00E356EE1AD99517003FC87E /* reactNavigationTabsTests.xctest */; 691 | productType = "com.apple.product-type.bundle.unit-test"; 692 | }; 693 | 13B07F861A680F5B00A75B9A /* reactNavigationTabs */ = { 694 | isa = PBXNativeTarget; 695 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactNavigationTabs" */; 696 | buildPhases = ( 697 | 13B07F871A680F5B00A75B9A /* Sources */, 698 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 699 | 13B07F8E1A680F5B00A75B9A /* Resources */, 700 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 701 | ); 702 | buildRules = ( 703 | ); 704 | dependencies = ( 705 | ); 706 | name = reactNavigationTabs; 707 | productName = "Hello World"; 708 | productReference = 13B07F961A680F5B00A75B9A /* reactNavigationTabs.app */; 709 | productType = "com.apple.product-type.application"; 710 | }; 711 | 2D02E47A1E0B4A5D006451C7 /* reactNavigationTabs-tvOS */ = { 712 | isa = PBXNativeTarget; 713 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationTabs-tvOS" */; 714 | buildPhases = ( 715 | 2D02E4771E0B4A5D006451C7 /* Sources */, 716 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 717 | 2D02E4791E0B4A5D006451C7 /* Resources */, 718 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 719 | ); 720 | buildRules = ( 721 | ); 722 | dependencies = ( 723 | ); 724 | name = "reactNavigationTabs-tvOS"; 725 | productName = "reactNavigationTabs-tvOS"; 726 | productReference = 2D02E47B1E0B4A5D006451C7 /* reactNavigationTabs-tvOS.app */; 727 | productType = "com.apple.product-type.application"; 728 | }; 729 | 2D02E48F1E0B4A5D006451C7 /* reactNavigationTabs-tvOSTests */ = { 730 | isa = PBXNativeTarget; 731 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationTabs-tvOSTests" */; 732 | buildPhases = ( 733 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 734 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 735 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 736 | ); 737 | buildRules = ( 738 | ); 739 | dependencies = ( 740 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 741 | ); 742 | name = "reactNavigationTabs-tvOSTests"; 743 | productName = "reactNavigationTabs-tvOSTests"; 744 | productReference = 2D02E4901E0B4A5D006451C7 /* reactNavigationTabs-tvOSTests.xctest */; 745 | productType = "com.apple.product-type.bundle.unit-test"; 746 | }; 747 | /* End PBXNativeTarget section */ 748 | 749 | /* Begin PBXProject section */ 750 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 751 | isa = PBXProject; 752 | attributes = { 753 | LastUpgradeCheck = 940; 754 | ORGANIZATIONNAME = Facebook; 755 | TargetAttributes = { 756 | 00E356ED1AD99517003FC87E = { 757 | CreatedOnToolsVersion = 6.2; 758 | TestTargetID = 13B07F861A680F5B00A75B9A; 759 | }; 760 | 2D02E47A1E0B4A5D006451C7 = { 761 | CreatedOnToolsVersion = 8.2.1; 762 | ProvisioningStyle = Automatic; 763 | }; 764 | 2D02E48F1E0B4A5D006451C7 = { 765 | CreatedOnToolsVersion = 8.2.1; 766 | ProvisioningStyle = Automatic; 767 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 768 | }; 769 | }; 770 | }; 771 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactNavigationTabs" */; 772 | compatibilityVersion = "Xcode 3.2"; 773 | developmentRegion = English; 774 | hasScannedForEncodings = 0; 775 | knownRegions = ( 776 | en, 777 | Base, 778 | ); 779 | mainGroup = 83CBB9F61A601CBA00E9B192; 780 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 781 | projectDirPath = ""; 782 | projectReferences = ( 783 | { 784 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 785 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 786 | }, 787 | { 788 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 789 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 790 | }, 791 | { 792 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 793 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 794 | }, 795 | { 796 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 797 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 798 | }, 799 | { 800 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 801 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 802 | }, 803 | { 804 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 805 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 806 | }, 807 | { 808 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 809 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 810 | }, 811 | { 812 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 813 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 814 | }, 815 | { 816 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 817 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 818 | }, 819 | { 820 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 821 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 822 | }, 823 | { 824 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 825 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 826 | }, 827 | { 828 | ProductGroup = 146834001AC3E56700842450 /* Products */; 829 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 830 | }, 831 | ); 832 | projectRoot = ""; 833 | targets = ( 834 | 13B07F861A680F5B00A75B9A /* reactNavigationTabs */, 835 | 00E356ED1AD99517003FC87E /* reactNavigationTabsTests */, 836 | 2D02E47A1E0B4A5D006451C7 /* reactNavigationTabs-tvOS */, 837 | 2D02E48F1E0B4A5D006451C7 /* reactNavigationTabs-tvOSTests */, 838 | ); 839 | }; 840 | /* End PBXProject section */ 841 | 842 | /* Begin PBXReferenceProxy section */ 843 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 844 | isa = PBXReferenceProxy; 845 | fileType = archive.ar; 846 | path = libRCTActionSheet.a; 847 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 848 | sourceTree = BUILT_PRODUCTS_DIR; 849 | }; 850 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 851 | isa = PBXReferenceProxy; 852 | fileType = archive.ar; 853 | path = libRCTGeolocation.a; 854 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 855 | sourceTree = BUILT_PRODUCTS_DIR; 856 | }; 857 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 858 | isa = PBXReferenceProxy; 859 | fileType = archive.ar; 860 | path = libRCTImage.a; 861 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 862 | sourceTree = BUILT_PRODUCTS_DIR; 863 | }; 864 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 865 | isa = PBXReferenceProxy; 866 | fileType = archive.ar; 867 | path = libRCTNetwork.a; 868 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 869 | sourceTree = BUILT_PRODUCTS_DIR; 870 | }; 871 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 872 | isa = PBXReferenceProxy; 873 | fileType = archive.ar; 874 | path = libRCTVibration.a; 875 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 876 | sourceTree = BUILT_PRODUCTS_DIR; 877 | }; 878 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 879 | isa = PBXReferenceProxy; 880 | fileType = archive.ar; 881 | path = libRCTSettings.a; 882 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 883 | sourceTree = BUILT_PRODUCTS_DIR; 884 | }; 885 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 886 | isa = PBXReferenceProxy; 887 | fileType = archive.ar; 888 | path = libRCTWebSocket.a; 889 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 890 | sourceTree = BUILT_PRODUCTS_DIR; 891 | }; 892 | 146834041AC3E56700842450 /* libReact.a */ = { 893 | isa = PBXReferenceProxy; 894 | fileType = archive.ar; 895 | path = libReact.a; 896 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 897 | sourceTree = BUILT_PRODUCTS_DIR; 898 | }; 899 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 900 | isa = PBXReferenceProxy; 901 | fileType = archive.ar; 902 | path = "libRCTBlob-tvOS.a"; 903 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 904 | sourceTree = BUILT_PRODUCTS_DIR; 905 | }; 906 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 907 | isa = PBXReferenceProxy; 908 | fileType = archive.ar; 909 | path = libfishhook.a; 910 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 911 | sourceTree = BUILT_PRODUCTS_DIR; 912 | }; 913 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 914 | isa = PBXReferenceProxy; 915 | fileType = archive.ar; 916 | path = "libfishhook-tvOS.a"; 917 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 918 | sourceTree = BUILT_PRODUCTS_DIR; 919 | }; 920 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 921 | isa = PBXReferenceProxy; 922 | fileType = archive.ar; 923 | path = libjsinspector.a; 924 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 925 | sourceTree = BUILT_PRODUCTS_DIR; 926 | }; 927 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 928 | isa = PBXReferenceProxy; 929 | fileType = archive.ar; 930 | path = "libjsinspector-tvOS.a"; 931 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 932 | sourceTree = BUILT_PRODUCTS_DIR; 933 | }; 934 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 935 | isa = PBXReferenceProxy; 936 | fileType = archive.ar; 937 | path = "libthird-party.a"; 938 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 939 | sourceTree = BUILT_PRODUCTS_DIR; 940 | }; 941 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 942 | isa = PBXReferenceProxy; 943 | fileType = archive.ar; 944 | path = "libthird-party.a"; 945 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 946 | sourceTree = BUILT_PRODUCTS_DIR; 947 | }; 948 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 949 | isa = PBXReferenceProxy; 950 | fileType = archive.ar; 951 | path = "libdouble-conversion.a"; 952 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 953 | sourceTree = BUILT_PRODUCTS_DIR; 954 | }; 955 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 956 | isa = PBXReferenceProxy; 957 | fileType = archive.ar; 958 | path = "libdouble-conversion.a"; 959 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 960 | sourceTree = BUILT_PRODUCTS_DIR; 961 | }; 962 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 963 | isa = PBXReferenceProxy; 964 | fileType = archive.ar; 965 | path = libprivatedata.a; 966 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 967 | sourceTree = BUILT_PRODUCTS_DIR; 968 | }; 969 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 970 | isa = PBXReferenceProxy; 971 | fileType = archive.ar; 972 | path = "libprivatedata-tvOS.a"; 973 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 974 | sourceTree = BUILT_PRODUCTS_DIR; 975 | }; 976 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 977 | isa = PBXReferenceProxy; 978 | fileType = archive.ar; 979 | path = "libRCTImage-tvOS.a"; 980 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 981 | sourceTree = BUILT_PRODUCTS_DIR; 982 | }; 983 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 984 | isa = PBXReferenceProxy; 985 | fileType = archive.ar; 986 | path = "libRCTLinking-tvOS.a"; 987 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 988 | sourceTree = BUILT_PRODUCTS_DIR; 989 | }; 990 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 991 | isa = PBXReferenceProxy; 992 | fileType = archive.ar; 993 | path = "libRCTNetwork-tvOS.a"; 994 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 995 | sourceTree = BUILT_PRODUCTS_DIR; 996 | }; 997 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 998 | isa = PBXReferenceProxy; 999 | fileType = archive.ar; 1000 | path = "libRCTSettings-tvOS.a"; 1001 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1002 | sourceTree = BUILT_PRODUCTS_DIR; 1003 | }; 1004 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1005 | isa = PBXReferenceProxy; 1006 | fileType = archive.ar; 1007 | path = "libRCTText-tvOS.a"; 1008 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1009 | sourceTree = BUILT_PRODUCTS_DIR; 1010 | }; 1011 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1012 | isa = PBXReferenceProxy; 1013 | fileType = archive.ar; 1014 | path = "libRCTWebSocket-tvOS.a"; 1015 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1016 | sourceTree = BUILT_PRODUCTS_DIR; 1017 | }; 1018 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1019 | isa = PBXReferenceProxy; 1020 | fileType = archive.ar; 1021 | path = libReact.a; 1022 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1023 | sourceTree = BUILT_PRODUCTS_DIR; 1024 | }; 1025 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1026 | isa = PBXReferenceProxy; 1027 | fileType = archive.ar; 1028 | path = libyoga.a; 1029 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1030 | sourceTree = BUILT_PRODUCTS_DIR; 1031 | }; 1032 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1033 | isa = PBXReferenceProxy; 1034 | fileType = archive.ar; 1035 | path = libyoga.a; 1036 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1037 | sourceTree = BUILT_PRODUCTS_DIR; 1038 | }; 1039 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1040 | isa = PBXReferenceProxy; 1041 | fileType = archive.ar; 1042 | path = libcxxreact.a; 1043 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1044 | sourceTree = BUILT_PRODUCTS_DIR; 1045 | }; 1046 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1047 | isa = PBXReferenceProxy; 1048 | fileType = archive.ar; 1049 | path = libcxxreact.a; 1050 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1051 | sourceTree = BUILT_PRODUCTS_DIR; 1052 | }; 1053 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1054 | isa = PBXReferenceProxy; 1055 | fileType = archive.ar; 1056 | path = libjschelpers.a; 1057 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1058 | sourceTree = BUILT_PRODUCTS_DIR; 1059 | }; 1060 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1061 | isa = PBXReferenceProxy; 1062 | fileType = archive.ar; 1063 | path = libjschelpers.a; 1064 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1065 | sourceTree = BUILT_PRODUCTS_DIR; 1066 | }; 1067 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1068 | isa = PBXReferenceProxy; 1069 | fileType = archive.ar; 1070 | path = libRCTAnimation.a; 1071 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1072 | sourceTree = BUILT_PRODUCTS_DIR; 1073 | }; 1074 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1075 | isa = PBXReferenceProxy; 1076 | fileType = archive.ar; 1077 | path = libRCTAnimation.a; 1078 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1079 | sourceTree = BUILT_PRODUCTS_DIR; 1080 | }; 1081 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1082 | isa = PBXReferenceProxy; 1083 | fileType = archive.ar; 1084 | path = libRCTLinking.a; 1085 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1086 | sourceTree = BUILT_PRODUCTS_DIR; 1087 | }; 1088 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1089 | isa = PBXReferenceProxy; 1090 | fileType = archive.ar; 1091 | path = libRCTText.a; 1092 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1093 | sourceTree = BUILT_PRODUCTS_DIR; 1094 | }; 1095 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1096 | isa = PBXReferenceProxy; 1097 | fileType = archive.ar; 1098 | path = libRCTBlob.a; 1099 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1100 | sourceTree = BUILT_PRODUCTS_DIR; 1101 | }; 1102 | /* End PBXReferenceProxy section */ 1103 | 1104 | /* Begin PBXResourcesBuildPhase section */ 1105 | 00E356EC1AD99517003FC87E /* Resources */ = { 1106 | isa = PBXResourcesBuildPhase; 1107 | buildActionMask = 2147483647; 1108 | files = ( 1109 | ); 1110 | runOnlyForDeploymentPostprocessing = 0; 1111 | }; 1112 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1113 | isa = PBXResourcesBuildPhase; 1114 | buildActionMask = 2147483647; 1115 | files = ( 1116 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1117 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1118 | 6AC3EAB7F385400AA3EFC09A /* AntDesign.ttf in Resources */, 1119 | E84142227778498BA711719D /* Entypo.ttf in Resources */, 1120 | 71B0BB5F6CC94CBFA62D5156 /* EvilIcons.ttf in Resources */, 1121 | 78A71E36170046978155ACD2 /* Feather.ttf in Resources */, 1122 | 24D77AF46C694BE1A106E98D /* FontAwesome.ttf in Resources */, 1123 | 312EBAB4EBD047FDA4FDABF9 /* FontAwesome5_Brands.ttf in Resources */, 1124 | 1C12D4E26A4347AD88292FA0 /* FontAwesome5_Regular.ttf in Resources */, 1125 | BA586A4FF35D45D1B6B6A620 /* FontAwesome5_Solid.ttf in Resources */, 1126 | CFDE0169D3FF4039B28AA6E5 /* Foundation.ttf in Resources */, 1127 | D7B8E074EDF74E2A99660E00 /* Ionicons.ttf in Resources */, 1128 | C68BF8B2C0B84951AEDA1023 /* MaterialCommunityIcons.ttf in Resources */, 1129 | D5077B1B66044E63AE72ECFA /* MaterialIcons.ttf in Resources */, 1130 | E154C6D30CB2424EB4BE4E04 /* Octicons.ttf in Resources */, 1131 | 93C94B1571AD477193AF7AA0 /* SimpleLineIcons.ttf in Resources */, 1132 | 4E5410100957454CA0921047 /* Zocial.ttf in Resources */, 1133 | ); 1134 | runOnlyForDeploymentPostprocessing = 0; 1135 | }; 1136 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1137 | isa = PBXResourcesBuildPhase; 1138 | buildActionMask = 2147483647; 1139 | files = ( 1140 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1141 | ); 1142 | runOnlyForDeploymentPostprocessing = 0; 1143 | }; 1144 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1145 | isa = PBXResourcesBuildPhase; 1146 | buildActionMask = 2147483647; 1147 | files = ( 1148 | ); 1149 | runOnlyForDeploymentPostprocessing = 0; 1150 | }; 1151 | /* End PBXResourcesBuildPhase section */ 1152 | 1153 | /* Begin PBXShellScriptBuildPhase section */ 1154 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1155 | isa = PBXShellScriptBuildPhase; 1156 | buildActionMask = 2147483647; 1157 | files = ( 1158 | ); 1159 | inputPaths = ( 1160 | ); 1161 | name = "Bundle React Native code and images"; 1162 | outputPaths = ( 1163 | ); 1164 | runOnlyForDeploymentPostprocessing = 0; 1165 | shellPath = /bin/sh; 1166 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1167 | }; 1168 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1169 | isa = PBXShellScriptBuildPhase; 1170 | buildActionMask = 2147483647; 1171 | files = ( 1172 | ); 1173 | inputPaths = ( 1174 | ); 1175 | name = "Bundle React Native Code And Images"; 1176 | outputPaths = ( 1177 | ); 1178 | runOnlyForDeploymentPostprocessing = 0; 1179 | shellPath = /bin/sh; 1180 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1181 | }; 1182 | /* End PBXShellScriptBuildPhase section */ 1183 | 1184 | /* Begin PBXSourcesBuildPhase section */ 1185 | 00E356EA1AD99517003FC87E /* Sources */ = { 1186 | isa = PBXSourcesBuildPhase; 1187 | buildActionMask = 2147483647; 1188 | files = ( 1189 | 00E356F31AD99517003FC87E /* reactNavigationTabsTests.m in Sources */, 1190 | ); 1191 | runOnlyForDeploymentPostprocessing = 0; 1192 | }; 1193 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1194 | isa = PBXSourcesBuildPhase; 1195 | buildActionMask = 2147483647; 1196 | files = ( 1197 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1198 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1199 | ); 1200 | runOnlyForDeploymentPostprocessing = 0; 1201 | }; 1202 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1203 | isa = PBXSourcesBuildPhase; 1204 | buildActionMask = 2147483647; 1205 | files = ( 1206 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1207 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1208 | ); 1209 | runOnlyForDeploymentPostprocessing = 0; 1210 | }; 1211 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1212 | isa = PBXSourcesBuildPhase; 1213 | buildActionMask = 2147483647; 1214 | files = ( 1215 | 2DCD954D1E0B4F2C00145EB5 /* reactNavigationTabsTests.m in Sources */, 1216 | ); 1217 | runOnlyForDeploymentPostprocessing = 0; 1218 | }; 1219 | /* End PBXSourcesBuildPhase section */ 1220 | 1221 | /* Begin PBXTargetDependency section */ 1222 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1223 | isa = PBXTargetDependency; 1224 | target = 13B07F861A680F5B00A75B9A /* reactNavigationTabs */; 1225 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1226 | }; 1227 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1228 | isa = PBXTargetDependency; 1229 | target = 2D02E47A1E0B4A5D006451C7 /* reactNavigationTabs-tvOS */; 1230 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1231 | }; 1232 | /* End PBXTargetDependency section */ 1233 | 1234 | /* Begin PBXVariantGroup section */ 1235 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1236 | isa = PBXVariantGroup; 1237 | children = ( 1238 | 13B07FB21A68108700A75B9A /* Base */, 1239 | ); 1240 | name = LaunchScreen.xib; 1241 | path = reactNavigationTabs; 1242 | sourceTree = ""; 1243 | }; 1244 | /* End PBXVariantGroup section */ 1245 | 1246 | /* Begin XCBuildConfiguration section */ 1247 | 00E356F61AD99517003FC87E /* Debug */ = { 1248 | isa = XCBuildConfiguration; 1249 | buildSettings = { 1250 | BUNDLE_LOADER = "$(TEST_HOST)"; 1251 | GCC_PREPROCESSOR_DEFINITIONS = ( 1252 | "DEBUG=1", 1253 | "$(inherited)", 1254 | ); 1255 | INFOPLIST_FILE = reactNavigationTabsTests/Info.plist; 1256 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1257 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1258 | OTHER_LDFLAGS = ( 1259 | "-ObjC", 1260 | "-lc++", 1261 | ); 1262 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1263 | PRODUCT_NAME = "$(TARGET_NAME)"; 1264 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationTabs.app/reactNavigationTabs"; 1265 | LIBRARY_SEARCH_PATHS = ( 1266 | "$(inherited)", 1267 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1268 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1269 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1270 | ); 1271 | HEADER_SEARCH_PATHS = ( 1272 | "$(inherited)", 1273 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1274 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1275 | ); 1276 | }; 1277 | name = Debug; 1278 | }; 1279 | 00E356F71AD99517003FC87E /* Release */ = { 1280 | isa = XCBuildConfiguration; 1281 | buildSettings = { 1282 | BUNDLE_LOADER = "$(TEST_HOST)"; 1283 | COPY_PHASE_STRIP = NO; 1284 | INFOPLIST_FILE = reactNavigationTabsTests/Info.plist; 1285 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1286 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1287 | OTHER_LDFLAGS = ( 1288 | "-ObjC", 1289 | "-lc++", 1290 | ); 1291 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1292 | PRODUCT_NAME = "$(TARGET_NAME)"; 1293 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationTabs.app/reactNavigationTabs"; 1294 | LIBRARY_SEARCH_PATHS = ( 1295 | "$(inherited)", 1296 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1297 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1298 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1299 | ); 1300 | HEADER_SEARCH_PATHS = ( 1301 | "$(inherited)", 1302 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1303 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1304 | ); 1305 | }; 1306 | name = Release; 1307 | }; 1308 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1309 | isa = XCBuildConfiguration; 1310 | buildSettings = { 1311 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1312 | CURRENT_PROJECT_VERSION = 1; 1313 | DEAD_CODE_STRIPPING = NO; 1314 | INFOPLIST_FILE = reactNavigationTabs/Info.plist; 1315 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1316 | OTHER_LDFLAGS = ( 1317 | "$(inherited)", 1318 | "-ObjC", 1319 | "-lc++", 1320 | ); 1321 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1322 | PRODUCT_NAME = reactNavigationTabs; 1323 | VERSIONING_SYSTEM = "apple-generic"; 1324 | HEADER_SEARCH_PATHS = ( 1325 | "$(inherited)", 1326 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1327 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1328 | ); 1329 | }; 1330 | name = Debug; 1331 | }; 1332 | 13B07F951A680F5B00A75B9A /* Release */ = { 1333 | isa = XCBuildConfiguration; 1334 | buildSettings = { 1335 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1336 | CURRENT_PROJECT_VERSION = 1; 1337 | INFOPLIST_FILE = reactNavigationTabs/Info.plist; 1338 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1339 | OTHER_LDFLAGS = ( 1340 | "$(inherited)", 1341 | "-ObjC", 1342 | "-lc++", 1343 | ); 1344 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1345 | PRODUCT_NAME = reactNavigationTabs; 1346 | VERSIONING_SYSTEM = "apple-generic"; 1347 | HEADER_SEARCH_PATHS = ( 1348 | "$(inherited)", 1349 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1350 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1351 | ); 1352 | }; 1353 | name = Release; 1354 | }; 1355 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1356 | isa = XCBuildConfiguration; 1357 | buildSettings = { 1358 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1359 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1360 | CLANG_ANALYZER_NONNULL = YES; 1361 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1362 | CLANG_WARN_INFINITE_RECURSION = YES; 1363 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1364 | DEBUG_INFORMATION_FORMAT = dwarf; 1365 | ENABLE_TESTABILITY = YES; 1366 | GCC_NO_COMMON_BLOCKS = YES; 1367 | INFOPLIST_FILE = "reactNavigationTabs-tvOS/Info.plist"; 1368 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1369 | OTHER_LDFLAGS = ( 1370 | "-ObjC", 1371 | "-lc++", 1372 | ); 1373 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationTabs-tvOS"; 1374 | PRODUCT_NAME = "$(TARGET_NAME)"; 1375 | SDKROOT = appletvos; 1376 | TARGETED_DEVICE_FAMILY = 3; 1377 | TVOS_DEPLOYMENT_TARGET = 9.2; 1378 | LIBRARY_SEARCH_PATHS = ( 1379 | "$(inherited)", 1380 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1381 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1382 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1383 | ); 1384 | HEADER_SEARCH_PATHS = ( 1385 | "$(inherited)", 1386 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1387 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1388 | ); 1389 | }; 1390 | name = Debug; 1391 | }; 1392 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1393 | isa = XCBuildConfiguration; 1394 | buildSettings = { 1395 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1396 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1397 | CLANG_ANALYZER_NONNULL = YES; 1398 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1399 | CLANG_WARN_INFINITE_RECURSION = YES; 1400 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1401 | COPY_PHASE_STRIP = NO; 1402 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1403 | GCC_NO_COMMON_BLOCKS = YES; 1404 | INFOPLIST_FILE = "reactNavigationTabs-tvOS/Info.plist"; 1405 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1406 | OTHER_LDFLAGS = ( 1407 | "-ObjC", 1408 | "-lc++", 1409 | ); 1410 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationTabs-tvOS"; 1411 | PRODUCT_NAME = "$(TARGET_NAME)"; 1412 | SDKROOT = appletvos; 1413 | TARGETED_DEVICE_FAMILY = 3; 1414 | TVOS_DEPLOYMENT_TARGET = 9.2; 1415 | LIBRARY_SEARCH_PATHS = ( 1416 | "$(inherited)", 1417 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1418 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1419 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1420 | ); 1421 | HEADER_SEARCH_PATHS = ( 1422 | "$(inherited)", 1423 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1424 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1425 | ); 1426 | }; 1427 | name = Release; 1428 | }; 1429 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1430 | isa = XCBuildConfiguration; 1431 | buildSettings = { 1432 | BUNDLE_LOADER = "$(TEST_HOST)"; 1433 | CLANG_ANALYZER_NONNULL = YES; 1434 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1435 | CLANG_WARN_INFINITE_RECURSION = YES; 1436 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1437 | DEBUG_INFORMATION_FORMAT = dwarf; 1438 | ENABLE_TESTABILITY = YES; 1439 | GCC_NO_COMMON_BLOCKS = YES; 1440 | INFOPLIST_FILE = "reactNavigationTabs-tvOSTests/Info.plist"; 1441 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1442 | OTHER_LDFLAGS = ( 1443 | "-ObjC", 1444 | "-lc++", 1445 | ); 1446 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationTabs-tvOSTests"; 1447 | PRODUCT_NAME = "$(TARGET_NAME)"; 1448 | SDKROOT = appletvos; 1449 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationTabs-tvOS.app/reactNavigationTabs-tvOS"; 1450 | TVOS_DEPLOYMENT_TARGET = 10.1; 1451 | LIBRARY_SEARCH_PATHS = ( 1452 | "$(inherited)", 1453 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1454 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1455 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1456 | ); 1457 | HEADER_SEARCH_PATHS = ( 1458 | "$(inherited)", 1459 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1460 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1461 | ); 1462 | }; 1463 | name = Debug; 1464 | }; 1465 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1466 | isa = XCBuildConfiguration; 1467 | buildSettings = { 1468 | BUNDLE_LOADER = "$(TEST_HOST)"; 1469 | CLANG_ANALYZER_NONNULL = YES; 1470 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1471 | CLANG_WARN_INFINITE_RECURSION = YES; 1472 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1473 | COPY_PHASE_STRIP = NO; 1474 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1475 | GCC_NO_COMMON_BLOCKS = YES; 1476 | INFOPLIST_FILE = "reactNavigationTabs-tvOSTests/Info.plist"; 1477 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1478 | OTHER_LDFLAGS = ( 1479 | "-ObjC", 1480 | "-lc++", 1481 | ); 1482 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationTabs-tvOSTests"; 1483 | PRODUCT_NAME = "$(TARGET_NAME)"; 1484 | SDKROOT = appletvos; 1485 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationTabs-tvOS.app/reactNavigationTabs-tvOS"; 1486 | TVOS_DEPLOYMENT_TARGET = 10.1; 1487 | LIBRARY_SEARCH_PATHS = ( 1488 | "$(inherited)", 1489 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1490 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1491 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1492 | ); 1493 | HEADER_SEARCH_PATHS = ( 1494 | "$(inherited)", 1495 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1496 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1497 | ); 1498 | }; 1499 | name = Release; 1500 | }; 1501 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1502 | isa = XCBuildConfiguration; 1503 | buildSettings = { 1504 | ALWAYS_SEARCH_USER_PATHS = NO; 1505 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1506 | CLANG_CXX_LIBRARY = "libc++"; 1507 | CLANG_ENABLE_MODULES = YES; 1508 | CLANG_ENABLE_OBJC_ARC = YES; 1509 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1510 | CLANG_WARN_BOOL_CONVERSION = YES; 1511 | CLANG_WARN_COMMA = YES; 1512 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1513 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1514 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1515 | CLANG_WARN_EMPTY_BODY = YES; 1516 | CLANG_WARN_ENUM_CONVERSION = YES; 1517 | CLANG_WARN_INFINITE_RECURSION = YES; 1518 | CLANG_WARN_INT_CONVERSION = YES; 1519 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1520 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1521 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1522 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1523 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1524 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1525 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1526 | CLANG_WARN_UNREACHABLE_CODE = YES; 1527 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1528 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1529 | COPY_PHASE_STRIP = NO; 1530 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1531 | ENABLE_TESTABILITY = YES; 1532 | GCC_C_LANGUAGE_STANDARD = gnu99; 1533 | GCC_DYNAMIC_NO_PIC = NO; 1534 | GCC_NO_COMMON_BLOCKS = YES; 1535 | GCC_OPTIMIZATION_LEVEL = 0; 1536 | GCC_PREPROCESSOR_DEFINITIONS = ( 1537 | "DEBUG=1", 1538 | "$(inherited)", 1539 | ); 1540 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1541 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1542 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1543 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1544 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1545 | GCC_WARN_UNUSED_FUNCTION = YES; 1546 | GCC_WARN_UNUSED_VARIABLE = YES; 1547 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1548 | MTL_ENABLE_DEBUG_INFO = YES; 1549 | ONLY_ACTIVE_ARCH = YES; 1550 | SDKROOT = iphoneos; 1551 | }; 1552 | name = Debug; 1553 | }; 1554 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1555 | isa = XCBuildConfiguration; 1556 | buildSettings = { 1557 | ALWAYS_SEARCH_USER_PATHS = NO; 1558 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1559 | CLANG_CXX_LIBRARY = "libc++"; 1560 | CLANG_ENABLE_MODULES = YES; 1561 | CLANG_ENABLE_OBJC_ARC = YES; 1562 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1563 | CLANG_WARN_BOOL_CONVERSION = YES; 1564 | CLANG_WARN_COMMA = YES; 1565 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1566 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1567 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1568 | CLANG_WARN_EMPTY_BODY = YES; 1569 | CLANG_WARN_ENUM_CONVERSION = YES; 1570 | CLANG_WARN_INFINITE_RECURSION = YES; 1571 | CLANG_WARN_INT_CONVERSION = YES; 1572 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1573 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1574 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1575 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1576 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1577 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1578 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1579 | CLANG_WARN_UNREACHABLE_CODE = YES; 1580 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1581 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1582 | COPY_PHASE_STRIP = YES; 1583 | ENABLE_NS_ASSERTIONS = NO; 1584 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1585 | GCC_C_LANGUAGE_STANDARD = gnu99; 1586 | GCC_NO_COMMON_BLOCKS = YES; 1587 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1588 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1589 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1590 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1591 | GCC_WARN_UNUSED_FUNCTION = YES; 1592 | GCC_WARN_UNUSED_VARIABLE = YES; 1593 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1594 | MTL_ENABLE_DEBUG_INFO = NO; 1595 | SDKROOT = iphoneos; 1596 | VALIDATE_PRODUCT = YES; 1597 | }; 1598 | name = Release; 1599 | }; 1600 | /* End XCBuildConfiguration section */ 1601 | 1602 | /* Begin XCConfigurationList section */ 1603 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactNavigationTabsTests" */ = { 1604 | isa = XCConfigurationList; 1605 | buildConfigurations = ( 1606 | 00E356F61AD99517003FC87E /* Debug */, 1607 | 00E356F71AD99517003FC87E /* Release */, 1608 | ); 1609 | defaultConfigurationIsVisible = 0; 1610 | defaultConfigurationName = Release; 1611 | }; 1612 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactNavigationTabs" */ = { 1613 | isa = XCConfigurationList; 1614 | buildConfigurations = ( 1615 | 13B07F941A680F5B00A75B9A /* Debug */, 1616 | 13B07F951A680F5B00A75B9A /* Release */, 1617 | ); 1618 | defaultConfigurationIsVisible = 0; 1619 | defaultConfigurationName = Release; 1620 | }; 1621 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationTabs-tvOS" */ = { 1622 | isa = XCConfigurationList; 1623 | buildConfigurations = ( 1624 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1625 | 2D02E4981E0B4A5E006451C7 /* Release */, 1626 | ); 1627 | defaultConfigurationIsVisible = 0; 1628 | defaultConfigurationName = Release; 1629 | }; 1630 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationTabs-tvOSTests" */ = { 1631 | isa = XCConfigurationList; 1632 | buildConfigurations = ( 1633 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1634 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1635 | ); 1636 | defaultConfigurationIsVisible = 0; 1637 | defaultConfigurationName = Release; 1638 | }; 1639 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactNavigationTabs" */ = { 1640 | isa = XCConfigurationList; 1641 | buildConfigurations = ( 1642 | 83CBBA201A601CBA00E9B192 /* Debug */, 1643 | 83CBBA211A601CBA00E9B192 /* Release */, 1644 | ); 1645 | defaultConfigurationIsVisible = 0; 1646 | defaultConfigurationName = Release; 1647 | }; 1648 | /* End XCConfigurationList section */ 1649 | }; 1650 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1651 | } 1652 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs.xcodeproj/xcshareddata/xcschemes/reactNavigationTabs-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs.xcodeproj/xcshareddata/xcschemes/reactNavigationTabs.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | #ifdef DEBUG 20 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 21 | #else 22 | jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 23 | #endif 24 | 25 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 26 | moduleName:@"reactNavigationTabs" 27 | initialProperties:nil 28 | launchOptions:launchOptions]; 29 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 30 | 31 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 32 | UIViewController *rootViewController = [UIViewController new]; 33 | rootViewController.view = rootView; 34 | self.window.rootViewController = rootViewController; 35 | [self.window makeKeyAndVisible]; 36 | return YES; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/reactNavigationTabs/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | reactNavigationTabs 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSAppTransportSecurity 44 | 45 | NSAllowsArbitraryLoads 46 | 47 | NSExceptionDomains 48 | 49 | localhost 50 | 51 | NSExceptionAllowsInsecureHTTPLoads 52 | 53 | 54 | 55 | 56 | UIAppFonts 57 | 58 | AntDesign.ttf 59 | Entypo.ttf 60 | EvilIcons.ttf 61 | Feather.ttf 62 | FontAwesome.ttf 63 | FontAwesome5_Brands.ttf 64 | FontAwesome5_Regular.ttf 65 | FontAwesome5_Solid.ttf 66 | Foundation.ttf 67 | Ionicons.ttf 68 | MaterialCommunityIcons.ttf 69 | MaterialIcons.ttf 70 | Octicons.ttf 71 | SimpleLineIcons.ttf 72 | Zocial.ttf 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /ios/reactNavigationTabs/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/reactNavigationTabsTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/reactNavigationTabsTests/reactNavigationTabsTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface reactNavigationTabsTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation reactNavigationTabsTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNavigationTabs", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "16.6.3", 11 | "react-native": "0.57.8", 12 | "react-native-gesture-handler": "^1.0.12", 13 | "react-native-vector-icons": "^6.1.0", 14 | "react-navigation": "^3.0.9" 15 | }, 16 | "devDependencies": { 17 | "babel-jest": "23.6.0", 18 | "jest": "23.6.0", 19 | "metro-react-native-babel-preset": "0.51.1", 20 | "react-test-renderer": "16.6.3" 21 | }, 22 | "jest": { 23 | "preset": "react-native" 24 | } 25 | } 26 | --------------------------------------------------------------------------------