├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── 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 │ │ │ └── flatlistsearch │ │ │ ├── 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 ├── assets └── flatlist.gif ├── babel.config.js ├── index.js ├── ios ├── FlatListSearch-tvOS │ └── Info.plist ├── FlatListSearch-tvOSTests │ └── Info.plist ├── FlatListSearch.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── FlatListSearch-tvOS.xcscheme │ │ └── FlatListSearch.xcscheme ├── FlatListSearch │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── FlatListSearchTests │ ├── FlatListSearchTests.m │ └── Info.plist ├── metro.config.js ├── package.json ├── src └── SearchableList.js └── yarn.lock /.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 | module.system=haste 33 | module.system.haste.use_name_reducers=true 34 | # get basename 35 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 36 | # strip .js or .js.flow suffix 37 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 38 | # strip .ios suffix 39 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 40 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 41 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 42 | module.system.haste.paths.blacklist=.*/__tests__/.* 43 | module.system.haste.paths.blacklist=.*/__mocks__/.* 44 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 45 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 46 | 47 | munge_underscores=true 48 | 49 | 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' 50 | 51 | module.file_ext=.js 52 | module.file_ext=.jsx 53 | module.file_ext=.json 54 | module.file_ext=.native.js 55 | 56 | suppress_type=$FlowIssue 57 | suppress_type=$FlowFixMe 58 | suppress_type=$FlowFixMeProps 59 | suppress_type=$FlowFixMeState 60 | 61 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 62 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 65 | 66 | [version] 67 | ^0.92.0 68 | -------------------------------------------------------------------------------- /.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 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | * @flow 7 | */ 8 | 9 | import React from 'react'; 10 | import { SafeAreaView } from 'react-native'; 11 | import SearchableFlatList from './src/SearchableList'; 12 | 13 | const App = () => ( 14 | 15 | 16 | 17 | ); 18 | 19 | export default App; 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-searchable-flatlist 2 | 3 | Flatlist with searchable input header 4 | 5 | Read article posted on [Medium](https://medium.com/@vikrantnegi/how-to-build-a-react-native-flatlist-with-realtime-searching-ability-81ad100f6699) 6 | 7 | ![alt tag](./assets/flatlist.gif) 8 | 9 | ## Installation 10 | 11 | ### npm modules 12 | 13 | `npm install` 14 | or 15 | `yarn` 16 | 17 | ## Usage 18 | 19 | `react-native run-ios` 20 | or 21 | `react-native run-android` 22 | 23 | ## Troubleshooting 24 | 25 | #### `:CFBundleIdentifier` Error 26 | 27 | - Try clearing the cache with the following command: 28 | 29 | ``` 30 | watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/metro* && rm -rf $TMPDIR/haste-* 31 | ``` 32 | 33 | ## Donation 34 | 35 | If this project helped you reduce time to develop, please consider buying me a cup of coffee :) 36 | 37 | Buy Me A Coffee 38 | 39 | [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/E1E6Z0JL) 40 | -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | FlatListSearch 4 | Project android created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.buildship.core.gradleprojectbuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.buildship.core.gradleprojectnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | app 4 | Project app created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.buildship.core.gradleprojectbuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.eclipse.buildship.core.gradleprojectnature 22 | 23 | 24 | -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /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 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.flatlistsearch", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.flatlistsearch", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /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 | compileOptions { 99 | sourceCompatibility JavaVersion.VERSION_1_8 100 | targetCompatibility JavaVersion.VERSION_1_8 101 | } 102 | 103 | defaultConfig { 104 | applicationId "com.flatlistsearch" 105 | minSdkVersion rootProject.ext.minSdkVersion 106 | targetSdkVersion rootProject.ext.targetSdkVersion 107 | versionCode 1 108 | versionName "1.0" 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", "arm64-v8a", "x86_64" 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, "arm64-v8a": 3, "x86_64": 4] 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 | implementation project(':react-native-vector-icons') 141 | compile fileTree(dir: "libs", include: ["*.jar"]) 142 | compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 143 | compile "com.facebook.react:react-native:+" // From node_modules 144 | } 145 | 146 | // Run this once to be able to run the application with BUCK 147 | // puts all compile dependencies into folder libs for BUCK to use 148 | task copyDownloadableDepsToLibs(type: Copy) { 149 | from configurations.compile 150 | into 'libs' 151 | } 152 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 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 | -------------------------------------------------------------------------------- /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/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/flatlistsearch/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.flatlistsearch; 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 "FlatListSearch"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/flatlistsearch/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.flatlistsearch; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList(new MainReactPackage(), new VectorIconsPackage()); 26 | } 27 | 28 | @Override 29 | protected String getJSMainModuleName() { 30 | return "index"; 31 | } 32 | }; 33 | 34 | @Override 35 | public ReactNativeHost getReactNativeHost() { 36 | return mReactNativeHost; 37 | } 38 | 39 | @Override 40 | public void onCreate() { 41 | super.onCreate(); 42 | SoLoader.init(this, /* native exopackage */ false); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/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/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FlatListSearch 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 = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath 'com.android.tools.build:gradle:3.4.0' 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 | } -------------------------------------------------------------------------------- /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 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 26 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 27 | 28 | APP_NAME="Gradle" 29 | APP_BASE_NAME=`basename "$0"` 30 | 31 | # Use the maximum available, or set MAX_FD != -1 to use that value. 32 | MAX_FD="maximum" 33 | 34 | warn ( ) { 35 | echo "$*" 36 | } 37 | 38 | die ( ) { 39 | echo 40 | echo "$*" 41 | echo 42 | exit 1 43 | } 44 | 45 | # OS specific support (must be 'true' or 'false'). 46 | cygwin=false 47 | msys=false 48 | darwin=false 49 | case "`uname`" in 50 | CYGWIN* ) 51 | cygwin=true 52 | ;; 53 | Darwin* ) 54 | darwin=true 55 | ;; 56 | MINGW* ) 57 | msys=true 58 | ;; 59 | esac 60 | 61 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 62 | if $cygwin ; then 63 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 64 | fi 65 | 66 | # Attempt to set APP_HOME 67 | # Resolve links: $0 may be a link 68 | PRG="$0" 69 | # Need this for relative symlinks. 70 | while [ -h "$PRG" ] ; do 71 | ls=`ls -ld "$PRG"` 72 | link=`expr "$ls" : '.*-> \(.*\)$'` 73 | if expr "$link" : '/.*' > /dev/null; then 74 | PRG="$link" 75 | else 76 | PRG=`dirname "$PRG"`"/$link" 77 | fi 78 | done 79 | SAVED="`pwd`" 80 | cd "`dirname \"$PRG\"`/" >&- 81 | APP_HOME="`pwd -P`" 82 | cd "$SAVED" >&- 83 | 84 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin, switch paths to Windows format before running java 130 | if $cygwin ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | # We build the pattern for arguments to be converted via cygpath 135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 136 | SEP="" 137 | for dir in $ROOTDIRSRAW ; do 138 | ROOTDIRS="$ROOTDIRS$SEP$dir" 139 | SEP="|" 140 | done 141 | OURCYGPATTERN="(^($ROOTDIRS))" 142 | # Add a user-defined pattern to the cygpath arguments 143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 145 | fi 146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 147 | i=0 148 | for arg in "$@" ; do 149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 151 | 152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 154 | else 155 | eval `echo args$i`="\"$arg\"" 156 | fi 157 | i=$((i+1)) 158 | done 159 | case $i in 160 | (0) set -- ;; 161 | (1) set -- "$args0" ;; 162 | (2) set -- "$args0" "$args1" ;; 163 | (3) set -- "$args0" "$args1" "$args2" ;; 164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 170 | esac 171 | fi 172 | 173 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 174 | function splitJvmOpts() { 175 | JVM_OPTS=("$@") 176 | } 177 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 178 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 179 | 180 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 181 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem http://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 28 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 29 | 30 | set DIRNAME=%~dp0 31 | if "%DIRNAME%" == "" set DIRNAME=. 32 | set APP_BASE_NAME=%~n0 33 | set APP_HOME=%DIRNAME% 34 | 35 | @rem Find java.exe 36 | if defined JAVA_HOME goto findJavaFromJavaHome 37 | 38 | set JAVA_EXE=java.exe 39 | %JAVA_EXE% -version >NUL 2>&1 40 | if "%ERRORLEVEL%" == "0" goto init 41 | 42 | echo. 43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 44 | echo. 45 | echo Please set the JAVA_HOME variable in your environment to match the 46 | echo location of your Java installation. 47 | 48 | goto fail 49 | 50 | :findJavaFromJavaHome 51 | set JAVA_HOME=%JAVA_HOME:"=% 52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 53 | 54 | if exist "%JAVA_EXE%" goto init 55 | 56 | echo. 57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 58 | echo. 59 | echo Please set the JAVA_HOME variable in your environment to match the 60 | echo location of your Java installation. 61 | 62 | goto fail 63 | 64 | :init 65 | @rem Get command-line arguments, handling Windowz variants 66 | 67 | if not "%OS%" == "Windows_NT" goto win9xME_args 68 | if "%@eval[2+2]" == "4" goto 4NT_args 69 | 70 | :win9xME_args 71 | @rem Slurp the command line arguments. 72 | set CMD_LINE_ARGS= 73 | set _SKIP=2 74 | 75 | :win9xME_args_slurp 76 | if "x%~1" == "x" goto execute 77 | 78 | set CMD_LINE_ARGS=%* 79 | goto execute 80 | 81 | :4NT_args 82 | @rem Get arguments from the 4NT Shell from JP Software 83 | set CMD_LINE_ARGS=%$ 84 | 85 | :execute 86 | @rem Setup the command line 87 | 88 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 89 | 90 | @rem Execute Gradle 91 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 92 | 93 | :end 94 | @rem End local scope for the variables with windows NT shell 95 | if "%ERRORLEVEL%"=="0" goto mainEnd 96 | 97 | :fail 98 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 99 | rem the _cmd.exe /c_ return code! 100 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 101 | exit /b 1 102 | 103 | :mainEnd 104 | if "%OS%"=="Windows_NT" endlocal 105 | 106 | :omega 107 | -------------------------------------------------------------------------------- /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 = 'FlatListSearch' 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 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FlatListSearch", 3 | "displayName": "FlatListSearch" 4 | } -------------------------------------------------------------------------------- /assets/flatlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikrantnegi/react-native-searchable-flatlist/e9941913304efac2e07432f56c89e51decbcaaf2/assets/flatlist.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import { AppRegistry } from 'react-native'; 6 | import App from './App'; 7 | import { name as appName } from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /ios/FlatListSearch-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/FlatListSearch-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/FlatListSearch.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 /* FlatListSearchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FlatListSearchTests.m */; }; 15 | 07DC457916544A16816D5DDD /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E6AF35288E784585A8EBA854 /* Zocial.ttf */; }; 16 | 0F8EAB6000E74DC98426F78F /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 745D7E18AC6A4F6E9470AD7F /* Octicons.ttf */; }; 17 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 18 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 19 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 20 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 21 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 22 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 23 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 24 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 26 | 1C4DD1B2E138465ABA23A52E /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7733AA3F5D8B47AD8892661B /* Entypo.ttf */; }; 27 | 1E1C38DC0F7E43619299B288 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4D64DEFEAF8E40FE86491705 /* Foundation.ttf */; }; 28 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 29 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 30 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 31 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 32 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 33 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 34 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 35 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 36 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 37 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 38 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 39 | 2DCD954D1E0B4F2C00145EB5 /* FlatListSearchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FlatListSearchTests.m */; }; 40 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 41 | 2EB42FE099024F9590D01F15 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 43F0013D8B7B4A0FB79F9E52 /* MaterialIcons.ttf */; }; 42 | 35AEB25E1F204D74AF755A8F /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 12176168ECBE43F093C83A26 /* AntDesign.ttf */; }; 43 | 400B31BCE55E4490A78A770C /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DD7C163F662D4823B353C5A0 /* libRNVectorIcons.a */; }; 44 | 506EE52406F54E23B631AAC3 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E4E3D5A42C2F4AF9A4144B96 /* FontAwesome.ttf */; }; 45 | 5B1B7648F29145ED9B621F65 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F4BC8C369A6745D3AD037D21 /* EvilIcons.ttf */; }; 46 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 47 | 67B6723794BA4914B370ED06 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5012B79EAFFD4818B29B1154 /* FontAwesome5_Regular.ttf */; }; 48 | 7D51D3C1304B4654BEFCE621 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A8B4EEF23E9D46EAA7C7378C /* Ionicons.ttf */; }; 49 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 50 | 869830346BDD4D5AAB1B6488 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FE46C0D52160464B93D8A6A3 /* SimpleLineIcons.ttf */; }; 51 | 8B24851CE3514FB0880F2AA9 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E8F303EECB6E4DDFA85A18DC /* FontAwesome5_Brands.ttf */; }; 52 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 53 | CEB5EDD257BD4A20AFCA172F /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 51BF03FEBAAC4C6FA7FB43EF /* FontAwesome5_Solid.ttf */; }; 54 | D9B129B212D1417CA03502AA /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F15615B813D94ED48C2ABB6C /* MaterialCommunityIcons.ttf */; }; 55 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; }; 56 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; }; 57 | F467166994464DAE8A21A45F /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CA1C4EBE64304B938657F7DF /* Feather.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 = FlatListSearch; 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 | 28B294BE22DC61CD00279D6F /* PBXContainerItemProxy */ = { 125 | isa = PBXContainerItemProxy; 126 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 127 | proxyType = 2; 128 | remoteGlobalIDString = EDEBC6D6214B3E7000DD5AC8; 129 | remoteInfo = jsi; 130 | }; 131 | 28B294C022DC61CD00279D6F /* PBXContainerItemProxy */ = { 132 | isa = PBXContainerItemProxy; 133 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 134 | proxyType = 2; 135 | remoteGlobalIDString = EDEBC73B214B45A300DD5AC8; 136 | remoteInfo = jsiexecutor; 137 | }; 138 | 28B294C222DC61CD00279D6F /* PBXContainerItemProxy */ = { 139 | isa = PBXContainerItemProxy; 140 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 141 | proxyType = 2; 142 | remoteGlobalIDString = ED296FB6214C9A0900B7C4FE; 143 | remoteInfo = "jsi-tvOS"; 144 | }; 145 | 28B294C422DC61CD00279D6F /* PBXContainerItemProxy */ = { 146 | isa = PBXContainerItemProxy; 147 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 148 | proxyType = 2; 149 | remoteGlobalIDString = ED296FEE214C9CF800B7C4FE; 150 | remoteInfo = "jsiexecutor-tvOS"; 151 | }; 152 | 28B294CA22DC61CF00279D6F /* PBXContainerItemProxy */ = { 153 | isa = PBXContainerItemProxy; 154 | containerPortal = 6CAAC33183E24D2382E42D95 /* RNVectorIcons.xcodeproj */; 155 | proxyType = 2; 156 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 157 | remoteInfo = RNVectorIcons; 158 | }; 159 | 28B294CC22DC61CF00279D6F /* PBXContainerItemProxy */ = { 160 | isa = PBXContainerItemProxy; 161 | containerPortal = 6CAAC33183E24D2382E42D95 /* RNVectorIcons.xcodeproj */; 162 | proxyType = 2; 163 | remoteGlobalIDString = A39873CE1EA65EE60051E01A; 164 | remoteInfo = "RNVectorIcons-tvOS"; 165 | }; 166 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 167 | isa = PBXContainerItemProxy; 168 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 169 | proxyType = 1; 170 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 171 | remoteInfo = "FlatListSearch-tvOS"; 172 | }; 173 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 174 | isa = PBXContainerItemProxy; 175 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 176 | proxyType = 2; 177 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 178 | remoteInfo = "RCTBlob-tvOS"; 179 | }; 180 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 181 | isa = PBXContainerItemProxy; 182 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 183 | proxyType = 2; 184 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 185 | remoteInfo = fishhook; 186 | }; 187 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 188 | isa = PBXContainerItemProxy; 189 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 190 | proxyType = 2; 191 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 192 | remoteInfo = "fishhook-tvOS"; 193 | }; 194 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 195 | isa = PBXContainerItemProxy; 196 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 197 | proxyType = 2; 198 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 199 | remoteInfo = jsinspector; 200 | }; 201 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 202 | isa = PBXContainerItemProxy; 203 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 204 | proxyType = 2; 205 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 206 | remoteInfo = "jsinspector-tvOS"; 207 | }; 208 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 209 | isa = PBXContainerItemProxy; 210 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 211 | proxyType = 2; 212 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 213 | remoteInfo = "third-party"; 214 | }; 215 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 216 | isa = PBXContainerItemProxy; 217 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 218 | proxyType = 2; 219 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 220 | remoteInfo = "third-party-tvOS"; 221 | }; 222 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 223 | isa = PBXContainerItemProxy; 224 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 225 | proxyType = 2; 226 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 227 | remoteInfo = "double-conversion"; 228 | }; 229 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 230 | isa = PBXContainerItemProxy; 231 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 232 | proxyType = 2; 233 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 234 | remoteInfo = "double-conversion-tvOS"; 235 | }; 236 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 237 | isa = PBXContainerItemProxy; 238 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 239 | proxyType = 2; 240 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 241 | remoteInfo = "RCTImage-tvOS"; 242 | }; 243 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 244 | isa = PBXContainerItemProxy; 245 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 246 | proxyType = 2; 247 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 248 | remoteInfo = "RCTLinking-tvOS"; 249 | }; 250 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 251 | isa = PBXContainerItemProxy; 252 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 253 | proxyType = 2; 254 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 255 | remoteInfo = "RCTNetwork-tvOS"; 256 | }; 257 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 258 | isa = PBXContainerItemProxy; 259 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 260 | proxyType = 2; 261 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 262 | remoteInfo = "RCTSettings-tvOS"; 263 | }; 264 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 265 | isa = PBXContainerItemProxy; 266 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 267 | proxyType = 2; 268 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 269 | remoteInfo = "RCTText-tvOS"; 270 | }; 271 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 272 | isa = PBXContainerItemProxy; 273 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 274 | proxyType = 2; 275 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 276 | remoteInfo = "RCTWebSocket-tvOS"; 277 | }; 278 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 279 | isa = PBXContainerItemProxy; 280 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 281 | proxyType = 2; 282 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 283 | remoteInfo = "React-tvOS"; 284 | }; 285 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 286 | isa = PBXContainerItemProxy; 287 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 288 | proxyType = 2; 289 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 290 | remoteInfo = yoga; 291 | }; 292 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 293 | isa = PBXContainerItemProxy; 294 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 295 | proxyType = 2; 296 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 297 | remoteInfo = "yoga-tvOS"; 298 | }; 299 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 300 | isa = PBXContainerItemProxy; 301 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 302 | proxyType = 2; 303 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 304 | remoteInfo = cxxreact; 305 | }; 306 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 307 | isa = PBXContainerItemProxy; 308 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 309 | proxyType = 2; 310 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 311 | remoteInfo = "cxxreact-tvOS"; 312 | }; 313 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 314 | isa = PBXContainerItemProxy; 315 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 316 | proxyType = 2; 317 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 318 | remoteInfo = RCTAnimation; 319 | }; 320 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 321 | isa = PBXContainerItemProxy; 322 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 323 | proxyType = 2; 324 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 325 | remoteInfo = "RCTAnimation-tvOS"; 326 | }; 327 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 328 | isa = PBXContainerItemProxy; 329 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 330 | proxyType = 2; 331 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 332 | remoteInfo = RCTLinking; 333 | }; 334 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 335 | isa = PBXContainerItemProxy; 336 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 337 | proxyType = 2; 338 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 339 | remoteInfo = RCTText; 340 | }; 341 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 342 | isa = PBXContainerItemProxy; 343 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 344 | proxyType = 2; 345 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 346 | remoteInfo = RCTBlob; 347 | }; 348 | /* End PBXContainerItemProxy section */ 349 | 350 | /* Begin PBXFileReference section */ 351 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 352 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 353 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 354 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 355 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 356 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 357 | 00E356EE1AD99517003FC87E /* FlatListSearchTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FlatListSearchTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 358 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 359 | 00E356F21AD99517003FC87E /* FlatListSearchTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FlatListSearchTests.m; sourceTree = ""; }; 360 | 12176168ECBE43F093C83A26 /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; }; 361 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 362 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 363 | 13B07F961A680F5B00A75B9A /* FlatListSearch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FlatListSearch.app; sourceTree = BUILT_PRODUCTS_DIR; }; 364 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = FlatListSearch/AppDelegate.h; sourceTree = ""; }; 365 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = FlatListSearch/AppDelegate.m; sourceTree = ""; }; 366 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 367 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FlatListSearch/Images.xcassets; sourceTree = ""; }; 368 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FlatListSearch/Info.plist; sourceTree = ""; }; 369 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FlatListSearch/main.m; sourceTree = ""; }; 370 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 371 | 2D02E47B1E0B4A5D006451C7 /* FlatListSearch-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "FlatListSearch-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 372 | 2D02E4901E0B4A5D006451C7 /* FlatListSearch-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "FlatListSearch-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 373 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 374 | 43F0013D8B7B4A0FB79F9E52 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 375 | 4D64DEFEAF8E40FE86491705 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 376 | 5012B79EAFFD4818B29B1154 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; }; 377 | 51BF03FEBAAC4C6FA7FB43EF /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; }; 378 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 379 | 6CAAC33183E24D2382E42D95 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 380 | 745D7E18AC6A4F6E9470AD7F /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 381 | 7733AA3F5D8B47AD8892661B /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 382 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 383 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 384 | A8B4EEF23E9D46EAA7C7378C /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 385 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 386 | CA1C4EBE64304B938657F7DF /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 387 | DD7C163F662D4823B353C5A0 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 388 | E4E3D5A42C2F4AF9A4144B96 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 389 | E6AF35288E784585A8EBA854 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 390 | E8F303EECB6E4DDFA85A18DC /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; 391 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 392 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 393 | F15615B813D94ED48C2ABB6C /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 394 | F4BC8C369A6745D3AD037D21 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 395 | FE46C0D52160464B93D8A6A3 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 396 | /* End PBXFileReference section */ 397 | 398 | /* Begin PBXFrameworksBuildPhase section */ 399 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 400 | isa = PBXFrameworksBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 408 | isa = PBXFrameworksBuildPhase; 409 | buildActionMask = 2147483647; 410 | files = ( 411 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 412 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 413 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 414 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 415 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 416 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 417 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 418 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 419 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 420 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 421 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 422 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 423 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 424 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 425 | 400B31BCE55E4490A78A770C /* libRNVectorIcons.a in Frameworks */, 426 | ); 427 | runOnlyForDeploymentPostprocessing = 0; 428 | }; 429 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 430 | isa = PBXFrameworksBuildPhase; 431 | buildActionMask = 2147483647; 432 | files = ( 433 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 434 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 435 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 436 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 437 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 438 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 439 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 440 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 441 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 442 | ); 443 | runOnlyForDeploymentPostprocessing = 0; 444 | }; 445 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 446 | isa = PBXFrameworksBuildPhase; 447 | buildActionMask = 2147483647; 448 | files = ( 449 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 450 | ); 451 | runOnlyForDeploymentPostprocessing = 0; 452 | }; 453 | /* End PBXFrameworksBuildPhase section */ 454 | 455 | /* Begin PBXGroup section */ 456 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 457 | isa = PBXGroup; 458 | children = ( 459 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 460 | ); 461 | name = Products; 462 | sourceTree = ""; 463 | }; 464 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 465 | isa = PBXGroup; 466 | children = ( 467 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 468 | ); 469 | name = Products; 470 | sourceTree = ""; 471 | }; 472 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 473 | isa = PBXGroup; 474 | children = ( 475 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 476 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 477 | ); 478 | name = Products; 479 | sourceTree = ""; 480 | }; 481 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 482 | isa = PBXGroup; 483 | children = ( 484 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 485 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 486 | ); 487 | name = Products; 488 | sourceTree = ""; 489 | }; 490 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 491 | isa = PBXGroup; 492 | children = ( 493 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 494 | ); 495 | name = Products; 496 | sourceTree = ""; 497 | }; 498 | 00E356EF1AD99517003FC87E /* FlatListSearchTests */ = { 499 | isa = PBXGroup; 500 | children = ( 501 | 00E356F21AD99517003FC87E /* FlatListSearchTests.m */, 502 | 00E356F01AD99517003FC87E /* Supporting Files */, 503 | ); 504 | path = FlatListSearchTests; 505 | sourceTree = ""; 506 | }; 507 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 508 | isa = PBXGroup; 509 | children = ( 510 | 00E356F11AD99517003FC87E /* Info.plist */, 511 | ); 512 | name = "Supporting Files"; 513 | sourceTree = ""; 514 | }; 515 | 139105B71AF99BAD00B5F7CC /* Products */ = { 516 | isa = PBXGroup; 517 | children = ( 518 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 519 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 520 | ); 521 | name = Products; 522 | sourceTree = ""; 523 | }; 524 | 139FDEE71B06529A00C62182 /* Products */ = { 525 | isa = PBXGroup; 526 | children = ( 527 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 528 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 529 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 530 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 531 | ); 532 | name = Products; 533 | sourceTree = ""; 534 | }; 535 | 13B07FAE1A68108700A75B9A /* FlatListSearch */ = { 536 | isa = PBXGroup; 537 | children = ( 538 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 539 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 540 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 541 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 542 | 13B07FB61A68108700A75B9A /* Info.plist */, 543 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 544 | 13B07FB71A68108700A75B9A /* main.m */, 545 | ); 546 | name = FlatListSearch; 547 | sourceTree = ""; 548 | }; 549 | 146834001AC3E56700842450 /* Products */ = { 550 | isa = PBXGroup; 551 | children = ( 552 | 146834041AC3E56700842450 /* libReact.a */, 553 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 554 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 555 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 556 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 557 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 558 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 559 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 560 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 561 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 562 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 563 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 564 | 28B294BF22DC61CD00279D6F /* libjsi.a */, 565 | 28B294C122DC61CD00279D6F /* libjsiexecutor.a */, 566 | 28B294C322DC61CD00279D6F /* libjsi-tvOS.a */, 567 | 28B294C522DC61CD00279D6F /* libjsiexecutor-tvOS.a */, 568 | ); 569 | name = Products; 570 | sourceTree = ""; 571 | }; 572 | 236C562D184643D28D33F427 /* Resources */ = { 573 | isa = PBXGroup; 574 | children = ( 575 | 7733AA3F5D8B47AD8892661B /* Entypo.ttf */, 576 | F4BC8C369A6745D3AD037D21 /* EvilIcons.ttf */, 577 | CA1C4EBE64304B938657F7DF /* Feather.ttf */, 578 | E4E3D5A42C2F4AF9A4144B96 /* FontAwesome.ttf */, 579 | E8F303EECB6E4DDFA85A18DC /* FontAwesome5_Brands.ttf */, 580 | 5012B79EAFFD4818B29B1154 /* FontAwesome5_Regular.ttf */, 581 | 51BF03FEBAAC4C6FA7FB43EF /* FontAwesome5_Solid.ttf */, 582 | 4D64DEFEAF8E40FE86491705 /* Foundation.ttf */, 583 | A8B4EEF23E9D46EAA7C7378C /* Ionicons.ttf */, 584 | F15615B813D94ED48C2ABB6C /* MaterialCommunityIcons.ttf */, 585 | 43F0013D8B7B4A0FB79F9E52 /* MaterialIcons.ttf */, 586 | 745D7E18AC6A4F6E9470AD7F /* Octicons.ttf */, 587 | FE46C0D52160464B93D8A6A3 /* SimpleLineIcons.ttf */, 588 | E6AF35288E784585A8EBA854 /* Zocial.ttf */, 589 | 12176168ECBE43F093C83A26 /* AntDesign.ttf */, 590 | ); 591 | name = Resources; 592 | sourceTree = ""; 593 | }; 594 | 28B2949822DC61CC00279D6F /* Recovered References */ = { 595 | isa = PBXGroup; 596 | children = ( 597 | DD7C163F662D4823B353C5A0 /* libRNVectorIcons.a */, 598 | ); 599 | name = "Recovered References"; 600 | sourceTree = ""; 601 | }; 602 | 28B294C622DC61CE00279D6F /* Products */ = { 603 | isa = PBXGroup; 604 | children = ( 605 | 28B294CB22DC61CF00279D6F /* libRNVectorIcons.a */, 606 | 28B294CD22DC61CF00279D6F /* libRNVectorIcons-tvOS.a */, 607 | ); 608 | name = Products; 609 | sourceTree = ""; 610 | }; 611 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 612 | isa = PBXGroup; 613 | children = ( 614 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 615 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 616 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 617 | ); 618 | name = Frameworks; 619 | sourceTree = ""; 620 | }; 621 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 622 | isa = PBXGroup; 623 | children = ( 624 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 625 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 626 | ); 627 | name = Products; 628 | sourceTree = ""; 629 | }; 630 | 78C398B11ACF4ADC00677621 /* Products */ = { 631 | isa = PBXGroup; 632 | children = ( 633 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 634 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 635 | ); 636 | name = Products; 637 | sourceTree = ""; 638 | }; 639 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 640 | isa = PBXGroup; 641 | children = ( 642 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 643 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 644 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 645 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 646 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 647 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 648 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 649 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 650 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 651 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 652 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 653 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 654 | 6CAAC33183E24D2382E42D95 /* RNVectorIcons.xcodeproj */, 655 | ); 656 | name = Libraries; 657 | sourceTree = ""; 658 | }; 659 | 832341B11AAA6A8300B99B32 /* Products */ = { 660 | isa = PBXGroup; 661 | children = ( 662 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 663 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 664 | ); 665 | name = Products; 666 | sourceTree = ""; 667 | }; 668 | 83CBB9F61A601CBA00E9B192 = { 669 | isa = PBXGroup; 670 | children = ( 671 | 13B07FAE1A68108700A75B9A /* FlatListSearch */, 672 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 673 | 00E356EF1AD99517003FC87E /* FlatListSearchTests */, 674 | 83CBBA001A601CBA00E9B192 /* Products */, 675 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 676 | 236C562D184643D28D33F427 /* Resources */, 677 | 28B2949822DC61CC00279D6F /* Recovered References */, 678 | ); 679 | indentWidth = 2; 680 | sourceTree = ""; 681 | tabWidth = 2; 682 | usesTabs = 0; 683 | }; 684 | 83CBBA001A601CBA00E9B192 /* Products */ = { 685 | isa = PBXGroup; 686 | children = ( 687 | 13B07F961A680F5B00A75B9A /* FlatListSearch.app */, 688 | 00E356EE1AD99517003FC87E /* FlatListSearchTests.xctest */, 689 | 2D02E47B1E0B4A5D006451C7 /* FlatListSearch-tvOS.app */, 690 | 2D02E4901E0B4A5D006451C7 /* FlatListSearch-tvOSTests.xctest */, 691 | ); 692 | name = Products; 693 | sourceTree = ""; 694 | }; 695 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 696 | isa = PBXGroup; 697 | children = ( 698 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 699 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 700 | ); 701 | name = Products; 702 | sourceTree = ""; 703 | }; 704 | /* End PBXGroup section */ 705 | 706 | /* Begin PBXNativeTarget section */ 707 | 00E356ED1AD99517003FC87E /* FlatListSearchTests */ = { 708 | isa = PBXNativeTarget; 709 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FlatListSearchTests" */; 710 | buildPhases = ( 711 | 00E356EA1AD99517003FC87E /* Sources */, 712 | 00E356EB1AD99517003FC87E /* Frameworks */, 713 | 00E356EC1AD99517003FC87E /* Resources */, 714 | ); 715 | buildRules = ( 716 | ); 717 | dependencies = ( 718 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 719 | ); 720 | name = FlatListSearchTests; 721 | productName = FlatListSearchTests; 722 | productReference = 00E356EE1AD99517003FC87E /* FlatListSearchTests.xctest */; 723 | productType = "com.apple.product-type.bundle.unit-test"; 724 | }; 725 | 13B07F861A680F5B00A75B9A /* FlatListSearch */ = { 726 | isa = PBXNativeTarget; 727 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FlatListSearch" */; 728 | buildPhases = ( 729 | 13B07F871A680F5B00A75B9A /* Sources */, 730 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 731 | 13B07F8E1A680F5B00A75B9A /* Resources */, 732 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 733 | ); 734 | buildRules = ( 735 | ); 736 | dependencies = ( 737 | ); 738 | name = FlatListSearch; 739 | productName = "Hello World"; 740 | productReference = 13B07F961A680F5B00A75B9A /* FlatListSearch.app */; 741 | productType = "com.apple.product-type.application"; 742 | }; 743 | 2D02E47A1E0B4A5D006451C7 /* FlatListSearch-tvOS */ = { 744 | isa = PBXNativeTarget; 745 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FlatListSearch-tvOS" */; 746 | buildPhases = ( 747 | 2D02E4771E0B4A5D006451C7 /* Sources */, 748 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 749 | 2D02E4791E0B4A5D006451C7 /* Resources */, 750 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 751 | ); 752 | buildRules = ( 753 | ); 754 | dependencies = ( 755 | ); 756 | name = "FlatListSearch-tvOS"; 757 | productName = "FlatListSearch-tvOS"; 758 | productReference = 2D02E47B1E0B4A5D006451C7 /* FlatListSearch-tvOS.app */; 759 | productType = "com.apple.product-type.application"; 760 | }; 761 | 2D02E48F1E0B4A5D006451C7 /* FlatListSearch-tvOSTests */ = { 762 | isa = PBXNativeTarget; 763 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FlatListSearch-tvOSTests" */; 764 | buildPhases = ( 765 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 766 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 767 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 768 | ); 769 | buildRules = ( 770 | ); 771 | dependencies = ( 772 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 773 | ); 774 | name = "FlatListSearch-tvOSTests"; 775 | productName = "FlatListSearch-tvOSTests"; 776 | productReference = 2D02E4901E0B4A5D006451C7 /* FlatListSearch-tvOSTests.xctest */; 777 | productType = "com.apple.product-type.bundle.unit-test"; 778 | }; 779 | /* End PBXNativeTarget section */ 780 | 781 | /* Begin PBXProject section */ 782 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 783 | isa = PBXProject; 784 | attributes = { 785 | LastUpgradeCheck = 610; 786 | ORGANIZATIONNAME = Facebook; 787 | TargetAttributes = { 788 | 00E356ED1AD99517003FC87E = { 789 | CreatedOnToolsVersion = 6.2; 790 | TestTargetID = 13B07F861A680F5B00A75B9A; 791 | }; 792 | 2D02E47A1E0B4A5D006451C7 = { 793 | CreatedOnToolsVersion = 8.2.1; 794 | ProvisioningStyle = Automatic; 795 | }; 796 | 2D02E48F1E0B4A5D006451C7 = { 797 | CreatedOnToolsVersion = 8.2.1; 798 | ProvisioningStyle = Automatic; 799 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 800 | }; 801 | }; 802 | }; 803 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FlatListSearch" */; 804 | compatibilityVersion = "Xcode 3.2"; 805 | developmentRegion = English; 806 | hasScannedForEncodings = 0; 807 | knownRegions = ( 808 | English, 809 | en, 810 | Base, 811 | ); 812 | mainGroup = 83CBB9F61A601CBA00E9B192; 813 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 814 | projectDirPath = ""; 815 | projectReferences = ( 816 | { 817 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 818 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 819 | }, 820 | { 821 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 822 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 823 | }, 824 | { 825 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 826 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 827 | }, 828 | { 829 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 830 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 831 | }, 832 | { 833 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 834 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 835 | }, 836 | { 837 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 838 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 839 | }, 840 | { 841 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 842 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 843 | }, 844 | { 845 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 846 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 847 | }, 848 | { 849 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 850 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 851 | }, 852 | { 853 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 854 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 855 | }, 856 | { 857 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 858 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 859 | }, 860 | { 861 | ProductGroup = 146834001AC3E56700842450 /* Products */; 862 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 863 | }, 864 | { 865 | ProductGroup = 28B294C622DC61CE00279D6F /* Products */; 866 | ProjectRef = 6CAAC33183E24D2382E42D95 /* RNVectorIcons.xcodeproj */; 867 | }, 868 | ); 869 | projectRoot = ""; 870 | targets = ( 871 | 13B07F861A680F5B00A75B9A /* FlatListSearch */, 872 | 00E356ED1AD99517003FC87E /* FlatListSearchTests */, 873 | 2D02E47A1E0B4A5D006451C7 /* FlatListSearch-tvOS */, 874 | 2D02E48F1E0B4A5D006451C7 /* FlatListSearch-tvOSTests */, 875 | ); 876 | }; 877 | /* End PBXProject section */ 878 | 879 | /* Begin PBXReferenceProxy section */ 880 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 881 | isa = PBXReferenceProxy; 882 | fileType = archive.ar; 883 | path = libRCTActionSheet.a; 884 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 885 | sourceTree = BUILT_PRODUCTS_DIR; 886 | }; 887 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 888 | isa = PBXReferenceProxy; 889 | fileType = archive.ar; 890 | path = libRCTGeolocation.a; 891 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 892 | sourceTree = BUILT_PRODUCTS_DIR; 893 | }; 894 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 895 | isa = PBXReferenceProxy; 896 | fileType = archive.ar; 897 | path = libRCTImage.a; 898 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 899 | sourceTree = BUILT_PRODUCTS_DIR; 900 | }; 901 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 902 | isa = PBXReferenceProxy; 903 | fileType = archive.ar; 904 | path = libRCTNetwork.a; 905 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 906 | sourceTree = BUILT_PRODUCTS_DIR; 907 | }; 908 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 909 | isa = PBXReferenceProxy; 910 | fileType = archive.ar; 911 | path = libRCTVibration.a; 912 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 913 | sourceTree = BUILT_PRODUCTS_DIR; 914 | }; 915 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 916 | isa = PBXReferenceProxy; 917 | fileType = archive.ar; 918 | path = libRCTSettings.a; 919 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 920 | sourceTree = BUILT_PRODUCTS_DIR; 921 | }; 922 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 923 | isa = PBXReferenceProxy; 924 | fileType = archive.ar; 925 | path = libRCTWebSocket.a; 926 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 927 | sourceTree = BUILT_PRODUCTS_DIR; 928 | }; 929 | 146834041AC3E56700842450 /* libReact.a */ = { 930 | isa = PBXReferenceProxy; 931 | fileType = archive.ar; 932 | path = libReact.a; 933 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 934 | sourceTree = BUILT_PRODUCTS_DIR; 935 | }; 936 | 28B294BF22DC61CD00279D6F /* libjsi.a */ = { 937 | isa = PBXReferenceProxy; 938 | fileType = archive.ar; 939 | path = libjsi.a; 940 | remoteRef = 28B294BE22DC61CD00279D6F /* PBXContainerItemProxy */; 941 | sourceTree = BUILT_PRODUCTS_DIR; 942 | }; 943 | 28B294C122DC61CD00279D6F /* libjsiexecutor.a */ = { 944 | isa = PBXReferenceProxy; 945 | fileType = archive.ar; 946 | path = libjsiexecutor.a; 947 | remoteRef = 28B294C022DC61CD00279D6F /* PBXContainerItemProxy */; 948 | sourceTree = BUILT_PRODUCTS_DIR; 949 | }; 950 | 28B294C322DC61CD00279D6F /* libjsi-tvOS.a */ = { 951 | isa = PBXReferenceProxy; 952 | fileType = archive.ar; 953 | path = "libjsi-tvOS.a"; 954 | remoteRef = 28B294C222DC61CD00279D6F /* PBXContainerItemProxy */; 955 | sourceTree = BUILT_PRODUCTS_DIR; 956 | }; 957 | 28B294C522DC61CD00279D6F /* libjsiexecutor-tvOS.a */ = { 958 | isa = PBXReferenceProxy; 959 | fileType = archive.ar; 960 | path = "libjsiexecutor-tvOS.a"; 961 | remoteRef = 28B294C422DC61CD00279D6F /* PBXContainerItemProxy */; 962 | sourceTree = BUILT_PRODUCTS_DIR; 963 | }; 964 | 28B294CB22DC61CF00279D6F /* libRNVectorIcons.a */ = { 965 | isa = PBXReferenceProxy; 966 | fileType = archive.ar; 967 | path = libRNVectorIcons.a; 968 | remoteRef = 28B294CA22DC61CF00279D6F /* PBXContainerItemProxy */; 969 | sourceTree = BUILT_PRODUCTS_DIR; 970 | }; 971 | 28B294CD22DC61CF00279D6F /* libRNVectorIcons-tvOS.a */ = { 972 | isa = PBXReferenceProxy; 973 | fileType = archive.ar; 974 | path = "libRNVectorIcons-tvOS.a"; 975 | remoteRef = 28B294CC22DC61CF00279D6F /* PBXContainerItemProxy */; 976 | sourceTree = BUILT_PRODUCTS_DIR; 977 | }; 978 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 979 | isa = PBXReferenceProxy; 980 | fileType = archive.ar; 981 | path = "libRCTBlob-tvOS.a"; 982 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 983 | sourceTree = BUILT_PRODUCTS_DIR; 984 | }; 985 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 986 | isa = PBXReferenceProxy; 987 | fileType = archive.ar; 988 | path = libfishhook.a; 989 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 990 | sourceTree = BUILT_PRODUCTS_DIR; 991 | }; 992 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 993 | isa = PBXReferenceProxy; 994 | fileType = archive.ar; 995 | path = "libfishhook-tvOS.a"; 996 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 997 | sourceTree = BUILT_PRODUCTS_DIR; 998 | }; 999 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 1000 | isa = PBXReferenceProxy; 1001 | fileType = archive.ar; 1002 | path = libjsinspector.a; 1003 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 1004 | sourceTree = BUILT_PRODUCTS_DIR; 1005 | }; 1006 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 1007 | isa = PBXReferenceProxy; 1008 | fileType = archive.ar; 1009 | path = "libjsinspector-tvOS.a"; 1010 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 1011 | sourceTree = BUILT_PRODUCTS_DIR; 1012 | }; 1013 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 1014 | isa = PBXReferenceProxy; 1015 | fileType = archive.ar; 1016 | path = "libthird-party.a"; 1017 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 1018 | sourceTree = BUILT_PRODUCTS_DIR; 1019 | }; 1020 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 1021 | isa = PBXReferenceProxy; 1022 | fileType = archive.ar; 1023 | path = "libthird-party.a"; 1024 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 1025 | sourceTree = BUILT_PRODUCTS_DIR; 1026 | }; 1027 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 1028 | isa = PBXReferenceProxy; 1029 | fileType = archive.ar; 1030 | path = "libdouble-conversion.a"; 1031 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 1032 | sourceTree = BUILT_PRODUCTS_DIR; 1033 | }; 1034 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 1035 | isa = PBXReferenceProxy; 1036 | fileType = archive.ar; 1037 | path = "libdouble-conversion.a"; 1038 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 1039 | sourceTree = BUILT_PRODUCTS_DIR; 1040 | }; 1041 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 1042 | isa = PBXReferenceProxy; 1043 | fileType = archive.ar; 1044 | path = "libRCTImage-tvOS.a"; 1045 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 1046 | sourceTree = BUILT_PRODUCTS_DIR; 1047 | }; 1048 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1049 | isa = PBXReferenceProxy; 1050 | fileType = archive.ar; 1051 | path = "libRCTLinking-tvOS.a"; 1052 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1053 | sourceTree = BUILT_PRODUCTS_DIR; 1054 | }; 1055 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1056 | isa = PBXReferenceProxy; 1057 | fileType = archive.ar; 1058 | path = "libRCTNetwork-tvOS.a"; 1059 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1060 | sourceTree = BUILT_PRODUCTS_DIR; 1061 | }; 1062 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1063 | isa = PBXReferenceProxy; 1064 | fileType = archive.ar; 1065 | path = "libRCTSettings-tvOS.a"; 1066 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1067 | sourceTree = BUILT_PRODUCTS_DIR; 1068 | }; 1069 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1070 | isa = PBXReferenceProxy; 1071 | fileType = archive.ar; 1072 | path = "libRCTText-tvOS.a"; 1073 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1074 | sourceTree = BUILT_PRODUCTS_DIR; 1075 | }; 1076 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1077 | isa = PBXReferenceProxy; 1078 | fileType = archive.ar; 1079 | path = "libRCTWebSocket-tvOS.a"; 1080 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1081 | sourceTree = BUILT_PRODUCTS_DIR; 1082 | }; 1083 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1084 | isa = PBXReferenceProxy; 1085 | fileType = archive.ar; 1086 | path = libReact.a; 1087 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1088 | sourceTree = BUILT_PRODUCTS_DIR; 1089 | }; 1090 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1091 | isa = PBXReferenceProxy; 1092 | fileType = archive.ar; 1093 | path = libyoga.a; 1094 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1095 | sourceTree = BUILT_PRODUCTS_DIR; 1096 | }; 1097 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1098 | isa = PBXReferenceProxy; 1099 | fileType = archive.ar; 1100 | path = libyoga.a; 1101 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1102 | sourceTree = BUILT_PRODUCTS_DIR; 1103 | }; 1104 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1105 | isa = PBXReferenceProxy; 1106 | fileType = archive.ar; 1107 | path = libcxxreact.a; 1108 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1109 | sourceTree = BUILT_PRODUCTS_DIR; 1110 | }; 1111 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1112 | isa = PBXReferenceProxy; 1113 | fileType = archive.ar; 1114 | path = libcxxreact.a; 1115 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1116 | sourceTree = BUILT_PRODUCTS_DIR; 1117 | }; 1118 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1119 | isa = PBXReferenceProxy; 1120 | fileType = archive.ar; 1121 | path = libRCTAnimation.a; 1122 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1123 | sourceTree = BUILT_PRODUCTS_DIR; 1124 | }; 1125 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1126 | isa = PBXReferenceProxy; 1127 | fileType = archive.ar; 1128 | path = libRCTAnimation.a; 1129 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1130 | sourceTree = BUILT_PRODUCTS_DIR; 1131 | }; 1132 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1133 | isa = PBXReferenceProxy; 1134 | fileType = archive.ar; 1135 | path = libRCTLinking.a; 1136 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1137 | sourceTree = BUILT_PRODUCTS_DIR; 1138 | }; 1139 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1140 | isa = PBXReferenceProxy; 1141 | fileType = archive.ar; 1142 | path = libRCTText.a; 1143 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1144 | sourceTree = BUILT_PRODUCTS_DIR; 1145 | }; 1146 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1147 | isa = PBXReferenceProxy; 1148 | fileType = archive.ar; 1149 | path = libRCTBlob.a; 1150 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1151 | sourceTree = BUILT_PRODUCTS_DIR; 1152 | }; 1153 | /* End PBXReferenceProxy section */ 1154 | 1155 | /* Begin PBXResourcesBuildPhase section */ 1156 | 00E356EC1AD99517003FC87E /* Resources */ = { 1157 | isa = PBXResourcesBuildPhase; 1158 | buildActionMask = 2147483647; 1159 | files = ( 1160 | ); 1161 | runOnlyForDeploymentPostprocessing = 0; 1162 | }; 1163 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1164 | isa = PBXResourcesBuildPhase; 1165 | buildActionMask = 2147483647; 1166 | files = ( 1167 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1168 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1169 | 1C4DD1B2E138465ABA23A52E /* Entypo.ttf in Resources */, 1170 | 5B1B7648F29145ED9B621F65 /* EvilIcons.ttf in Resources */, 1171 | F467166994464DAE8A21A45F /* Feather.ttf in Resources */, 1172 | 506EE52406F54E23B631AAC3 /* FontAwesome.ttf in Resources */, 1173 | 8B24851CE3514FB0880F2AA9 /* FontAwesome5_Brands.ttf in Resources */, 1174 | 67B6723794BA4914B370ED06 /* FontAwesome5_Regular.ttf in Resources */, 1175 | CEB5EDD257BD4A20AFCA172F /* FontAwesome5_Solid.ttf in Resources */, 1176 | 1E1C38DC0F7E43619299B288 /* Foundation.ttf in Resources */, 1177 | 7D51D3C1304B4654BEFCE621 /* Ionicons.ttf in Resources */, 1178 | D9B129B212D1417CA03502AA /* MaterialCommunityIcons.ttf in Resources */, 1179 | 2EB42FE099024F9590D01F15 /* MaterialIcons.ttf in Resources */, 1180 | 0F8EAB6000E74DC98426F78F /* Octicons.ttf in Resources */, 1181 | 869830346BDD4D5AAB1B6488 /* SimpleLineIcons.ttf in Resources */, 1182 | 07DC457916544A16816D5DDD /* Zocial.ttf in Resources */, 1183 | 35AEB25E1F204D74AF755A8F /* AntDesign.ttf in Resources */, 1184 | ); 1185 | runOnlyForDeploymentPostprocessing = 0; 1186 | }; 1187 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1188 | isa = PBXResourcesBuildPhase; 1189 | buildActionMask = 2147483647; 1190 | files = ( 1191 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1192 | ); 1193 | runOnlyForDeploymentPostprocessing = 0; 1194 | }; 1195 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1196 | isa = PBXResourcesBuildPhase; 1197 | buildActionMask = 2147483647; 1198 | files = ( 1199 | ); 1200 | runOnlyForDeploymentPostprocessing = 0; 1201 | }; 1202 | /* End PBXResourcesBuildPhase section */ 1203 | 1204 | /* Begin PBXShellScriptBuildPhase section */ 1205 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1206 | isa = PBXShellScriptBuildPhase; 1207 | buildActionMask = 2147483647; 1208 | files = ( 1209 | ); 1210 | inputPaths = ( 1211 | ); 1212 | name = "Bundle React Native code and images"; 1213 | outputPaths = ( 1214 | ); 1215 | runOnlyForDeploymentPostprocessing = 0; 1216 | shellPath = /bin/sh; 1217 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1218 | }; 1219 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1220 | isa = PBXShellScriptBuildPhase; 1221 | buildActionMask = 2147483647; 1222 | files = ( 1223 | ); 1224 | inputPaths = ( 1225 | ); 1226 | name = "Bundle React Native Code And Images"; 1227 | outputPaths = ( 1228 | ); 1229 | runOnlyForDeploymentPostprocessing = 0; 1230 | shellPath = /bin/sh; 1231 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1232 | }; 1233 | /* End PBXShellScriptBuildPhase section */ 1234 | 1235 | /* Begin PBXSourcesBuildPhase section */ 1236 | 00E356EA1AD99517003FC87E /* Sources */ = { 1237 | isa = PBXSourcesBuildPhase; 1238 | buildActionMask = 2147483647; 1239 | files = ( 1240 | 00E356F31AD99517003FC87E /* FlatListSearchTests.m in Sources */, 1241 | ); 1242 | runOnlyForDeploymentPostprocessing = 0; 1243 | }; 1244 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1245 | isa = PBXSourcesBuildPhase; 1246 | buildActionMask = 2147483647; 1247 | files = ( 1248 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1249 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1250 | ); 1251 | runOnlyForDeploymentPostprocessing = 0; 1252 | }; 1253 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1254 | isa = PBXSourcesBuildPhase; 1255 | buildActionMask = 2147483647; 1256 | files = ( 1257 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1258 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1259 | ); 1260 | runOnlyForDeploymentPostprocessing = 0; 1261 | }; 1262 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1263 | isa = PBXSourcesBuildPhase; 1264 | buildActionMask = 2147483647; 1265 | files = ( 1266 | 2DCD954D1E0B4F2C00145EB5 /* FlatListSearchTests.m in Sources */, 1267 | ); 1268 | runOnlyForDeploymentPostprocessing = 0; 1269 | }; 1270 | /* End PBXSourcesBuildPhase section */ 1271 | 1272 | /* Begin PBXTargetDependency section */ 1273 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1274 | isa = PBXTargetDependency; 1275 | target = 13B07F861A680F5B00A75B9A /* FlatListSearch */; 1276 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1277 | }; 1278 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1279 | isa = PBXTargetDependency; 1280 | target = 2D02E47A1E0B4A5D006451C7 /* FlatListSearch-tvOS */; 1281 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1282 | }; 1283 | /* End PBXTargetDependency section */ 1284 | 1285 | /* Begin PBXVariantGroup section */ 1286 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1287 | isa = PBXVariantGroup; 1288 | children = ( 1289 | 13B07FB21A68108700A75B9A /* Base */, 1290 | ); 1291 | name = LaunchScreen.xib; 1292 | path = FlatListSearch; 1293 | sourceTree = ""; 1294 | }; 1295 | /* End PBXVariantGroup section */ 1296 | 1297 | /* Begin XCBuildConfiguration section */ 1298 | 00E356F61AD99517003FC87E /* Debug */ = { 1299 | isa = XCBuildConfiguration; 1300 | buildSettings = { 1301 | BUNDLE_LOADER = "$(TEST_HOST)"; 1302 | GCC_PREPROCESSOR_DEFINITIONS = ( 1303 | "DEBUG=1", 1304 | "$(inherited)", 1305 | ); 1306 | HEADER_SEARCH_PATHS = ( 1307 | "$(inherited)", 1308 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1309 | ); 1310 | INFOPLIST_FILE = FlatListSearchTests/Info.plist; 1311 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1312 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1313 | LIBRARY_SEARCH_PATHS = ( 1314 | "$(inherited)", 1315 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1316 | ); 1317 | OTHER_LDFLAGS = ( 1318 | "-ObjC", 1319 | "-lc++", 1320 | ); 1321 | PRODUCT_NAME = "$(TARGET_NAME)"; 1322 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FlatListSearch.app/FlatListSearch"; 1323 | }; 1324 | name = Debug; 1325 | }; 1326 | 00E356F71AD99517003FC87E /* Release */ = { 1327 | isa = XCBuildConfiguration; 1328 | buildSettings = { 1329 | BUNDLE_LOADER = "$(TEST_HOST)"; 1330 | COPY_PHASE_STRIP = NO; 1331 | HEADER_SEARCH_PATHS = ( 1332 | "$(inherited)", 1333 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1334 | ); 1335 | INFOPLIST_FILE = FlatListSearchTests/Info.plist; 1336 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1337 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1338 | LIBRARY_SEARCH_PATHS = ( 1339 | "$(inherited)", 1340 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1341 | ); 1342 | OTHER_LDFLAGS = ( 1343 | "-ObjC", 1344 | "-lc++", 1345 | ); 1346 | PRODUCT_NAME = "$(TARGET_NAME)"; 1347 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FlatListSearch.app/FlatListSearch"; 1348 | }; 1349 | name = Release; 1350 | }; 1351 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1352 | isa = XCBuildConfiguration; 1353 | buildSettings = { 1354 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1355 | CURRENT_PROJECT_VERSION = 1; 1356 | DEAD_CODE_STRIPPING = NO; 1357 | HEADER_SEARCH_PATHS = ( 1358 | "$(inherited)", 1359 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1360 | ); 1361 | INFOPLIST_FILE = FlatListSearch/Info.plist; 1362 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1363 | OTHER_LDFLAGS = ( 1364 | "$(inherited)", 1365 | "-ObjC", 1366 | "-lc++", 1367 | ); 1368 | PRODUCT_NAME = FlatListSearch; 1369 | VERSIONING_SYSTEM = "apple-generic"; 1370 | }; 1371 | name = Debug; 1372 | }; 1373 | 13B07F951A680F5B00A75B9A /* Release */ = { 1374 | isa = XCBuildConfiguration; 1375 | buildSettings = { 1376 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1377 | CURRENT_PROJECT_VERSION = 1; 1378 | HEADER_SEARCH_PATHS = ( 1379 | "$(inherited)", 1380 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1381 | ); 1382 | INFOPLIST_FILE = FlatListSearch/Info.plist; 1383 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1384 | OTHER_LDFLAGS = ( 1385 | "$(inherited)", 1386 | "-ObjC", 1387 | "-lc++", 1388 | ); 1389 | PRODUCT_NAME = FlatListSearch; 1390 | VERSIONING_SYSTEM = "apple-generic"; 1391 | }; 1392 | name = Release; 1393 | }; 1394 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1395 | isa = XCBuildConfiguration; 1396 | buildSettings = { 1397 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1398 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1399 | CLANG_ANALYZER_NONNULL = YES; 1400 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1401 | CLANG_WARN_INFINITE_RECURSION = YES; 1402 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1403 | DEBUG_INFORMATION_FORMAT = dwarf; 1404 | ENABLE_TESTABILITY = YES; 1405 | GCC_NO_COMMON_BLOCKS = YES; 1406 | HEADER_SEARCH_PATHS = ( 1407 | "$(inherited)", 1408 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1409 | ); 1410 | INFOPLIST_FILE = "FlatListSearch-tvOS/Info.plist"; 1411 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1412 | LIBRARY_SEARCH_PATHS = ( 1413 | "$(inherited)", 1414 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1415 | ); 1416 | OTHER_LDFLAGS = ( 1417 | "-ObjC", 1418 | "-lc++", 1419 | ); 1420 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FlatListSearch-tvOS"; 1421 | PRODUCT_NAME = "$(TARGET_NAME)"; 1422 | SDKROOT = appletvos; 1423 | TARGETED_DEVICE_FAMILY = 3; 1424 | TVOS_DEPLOYMENT_TARGET = 9.2; 1425 | }; 1426 | name = Debug; 1427 | }; 1428 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1429 | isa = XCBuildConfiguration; 1430 | buildSettings = { 1431 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1432 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1433 | CLANG_ANALYZER_NONNULL = YES; 1434 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1435 | CLANG_WARN_INFINITE_RECURSION = YES; 1436 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1437 | COPY_PHASE_STRIP = NO; 1438 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1439 | GCC_NO_COMMON_BLOCKS = YES; 1440 | HEADER_SEARCH_PATHS = ( 1441 | "$(inherited)", 1442 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1443 | ); 1444 | INFOPLIST_FILE = "FlatListSearch-tvOS/Info.plist"; 1445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1446 | LIBRARY_SEARCH_PATHS = ( 1447 | "$(inherited)", 1448 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1449 | ); 1450 | OTHER_LDFLAGS = ( 1451 | "-ObjC", 1452 | "-lc++", 1453 | ); 1454 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FlatListSearch-tvOS"; 1455 | PRODUCT_NAME = "$(TARGET_NAME)"; 1456 | SDKROOT = appletvos; 1457 | TARGETED_DEVICE_FAMILY = 3; 1458 | TVOS_DEPLOYMENT_TARGET = 9.2; 1459 | }; 1460 | name = Release; 1461 | }; 1462 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1463 | isa = XCBuildConfiguration; 1464 | buildSettings = { 1465 | BUNDLE_LOADER = "$(TEST_HOST)"; 1466 | CLANG_ANALYZER_NONNULL = YES; 1467 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1468 | CLANG_WARN_INFINITE_RECURSION = YES; 1469 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1470 | DEBUG_INFORMATION_FORMAT = dwarf; 1471 | ENABLE_TESTABILITY = YES; 1472 | GCC_NO_COMMON_BLOCKS = YES; 1473 | HEADER_SEARCH_PATHS = ( 1474 | "$(inherited)", 1475 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1476 | ); 1477 | INFOPLIST_FILE = "FlatListSearch-tvOSTests/Info.plist"; 1478 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1479 | LIBRARY_SEARCH_PATHS = ( 1480 | "$(inherited)", 1481 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1482 | ); 1483 | OTHER_LDFLAGS = ( 1484 | "-ObjC", 1485 | "-lc++", 1486 | ); 1487 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FlatListSearch-tvOSTests"; 1488 | PRODUCT_NAME = "$(TARGET_NAME)"; 1489 | SDKROOT = appletvos; 1490 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FlatListSearch-tvOS.app/FlatListSearch-tvOS"; 1491 | TVOS_DEPLOYMENT_TARGET = 10.1; 1492 | }; 1493 | name = Debug; 1494 | }; 1495 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1496 | isa = XCBuildConfiguration; 1497 | buildSettings = { 1498 | BUNDLE_LOADER = "$(TEST_HOST)"; 1499 | CLANG_ANALYZER_NONNULL = YES; 1500 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1501 | CLANG_WARN_INFINITE_RECURSION = YES; 1502 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1503 | COPY_PHASE_STRIP = NO; 1504 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1505 | GCC_NO_COMMON_BLOCKS = YES; 1506 | HEADER_SEARCH_PATHS = ( 1507 | "$(inherited)", 1508 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1509 | ); 1510 | INFOPLIST_FILE = "FlatListSearch-tvOSTests/Info.plist"; 1511 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1512 | LIBRARY_SEARCH_PATHS = ( 1513 | "$(inherited)", 1514 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1515 | ); 1516 | OTHER_LDFLAGS = ( 1517 | "-ObjC", 1518 | "-lc++", 1519 | ); 1520 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FlatListSearch-tvOSTests"; 1521 | PRODUCT_NAME = "$(TARGET_NAME)"; 1522 | SDKROOT = appletvos; 1523 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FlatListSearch-tvOS.app/FlatListSearch-tvOS"; 1524 | TVOS_DEPLOYMENT_TARGET = 10.1; 1525 | }; 1526 | name = Release; 1527 | }; 1528 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1529 | isa = XCBuildConfiguration; 1530 | buildSettings = { 1531 | ALWAYS_SEARCH_USER_PATHS = NO; 1532 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1533 | CLANG_CXX_LIBRARY = "libc++"; 1534 | CLANG_ENABLE_MODULES = YES; 1535 | CLANG_ENABLE_OBJC_ARC = YES; 1536 | CLANG_WARN_BOOL_CONVERSION = YES; 1537 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1538 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1539 | CLANG_WARN_EMPTY_BODY = YES; 1540 | CLANG_WARN_ENUM_CONVERSION = YES; 1541 | CLANG_WARN_INT_CONVERSION = YES; 1542 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1543 | CLANG_WARN_UNREACHABLE_CODE = YES; 1544 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1545 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1546 | COPY_PHASE_STRIP = NO; 1547 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1548 | GCC_C_LANGUAGE_STANDARD = gnu99; 1549 | GCC_DYNAMIC_NO_PIC = NO; 1550 | GCC_OPTIMIZATION_LEVEL = 0; 1551 | GCC_PREPROCESSOR_DEFINITIONS = ( 1552 | "DEBUG=1", 1553 | "$(inherited)", 1554 | ); 1555 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1556 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1557 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1558 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1559 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1560 | GCC_WARN_UNUSED_FUNCTION = YES; 1561 | GCC_WARN_UNUSED_VARIABLE = YES; 1562 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1563 | MTL_ENABLE_DEBUG_INFO = YES; 1564 | ONLY_ACTIVE_ARCH = YES; 1565 | SDKROOT = iphoneos; 1566 | }; 1567 | name = Debug; 1568 | }; 1569 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1570 | isa = XCBuildConfiguration; 1571 | buildSettings = { 1572 | ALWAYS_SEARCH_USER_PATHS = NO; 1573 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1574 | CLANG_CXX_LIBRARY = "libc++"; 1575 | CLANG_ENABLE_MODULES = YES; 1576 | CLANG_ENABLE_OBJC_ARC = YES; 1577 | CLANG_WARN_BOOL_CONVERSION = YES; 1578 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1579 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1580 | CLANG_WARN_EMPTY_BODY = YES; 1581 | CLANG_WARN_ENUM_CONVERSION = YES; 1582 | CLANG_WARN_INT_CONVERSION = YES; 1583 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1584 | CLANG_WARN_UNREACHABLE_CODE = YES; 1585 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1586 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1587 | COPY_PHASE_STRIP = YES; 1588 | ENABLE_NS_ASSERTIONS = NO; 1589 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1590 | GCC_C_LANGUAGE_STANDARD = gnu99; 1591 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1592 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1593 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1594 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1595 | GCC_WARN_UNUSED_FUNCTION = YES; 1596 | GCC_WARN_UNUSED_VARIABLE = YES; 1597 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1598 | MTL_ENABLE_DEBUG_INFO = NO; 1599 | SDKROOT = iphoneos; 1600 | VALIDATE_PRODUCT = YES; 1601 | }; 1602 | name = Release; 1603 | }; 1604 | /* End XCBuildConfiguration section */ 1605 | 1606 | /* Begin XCConfigurationList section */ 1607 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FlatListSearchTests" */ = { 1608 | isa = XCConfigurationList; 1609 | buildConfigurations = ( 1610 | 00E356F61AD99517003FC87E /* Debug */, 1611 | 00E356F71AD99517003FC87E /* Release */, 1612 | ); 1613 | defaultConfigurationIsVisible = 0; 1614 | defaultConfigurationName = Release; 1615 | }; 1616 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FlatListSearch" */ = { 1617 | isa = XCConfigurationList; 1618 | buildConfigurations = ( 1619 | 13B07F941A680F5B00A75B9A /* Debug */, 1620 | 13B07F951A680F5B00A75B9A /* Release */, 1621 | ); 1622 | defaultConfigurationIsVisible = 0; 1623 | defaultConfigurationName = Release; 1624 | }; 1625 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FlatListSearch-tvOS" */ = { 1626 | isa = XCConfigurationList; 1627 | buildConfigurations = ( 1628 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1629 | 2D02E4981E0B4A5E006451C7 /* Release */, 1630 | ); 1631 | defaultConfigurationIsVisible = 0; 1632 | defaultConfigurationName = Release; 1633 | }; 1634 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FlatListSearch-tvOSTests" */ = { 1635 | isa = XCConfigurationList; 1636 | buildConfigurations = ( 1637 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1638 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1639 | ); 1640 | defaultConfigurationIsVisible = 0; 1641 | defaultConfigurationName = Release; 1642 | }; 1643 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FlatListSearch" */ = { 1644 | isa = XCConfigurationList; 1645 | buildConfigurations = ( 1646 | 83CBBA201A601CBA00E9B192 /* Debug */, 1647 | 83CBBA211A601CBA00E9B192 /* Release */, 1648 | ); 1649 | defaultConfigurationIsVisible = 0; 1650 | defaultConfigurationName = Release; 1651 | }; 1652 | /* End XCConfigurationList section */ 1653 | }; 1654 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1655 | } 1656 | -------------------------------------------------------------------------------- /ios/FlatListSearch.xcodeproj/xcshareddata/xcschemes/FlatListSearch-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/FlatListSearch.xcodeproj/xcshareddata/xcschemes/FlatListSearch.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/FlatListSearch/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. 3 | * Copyright (c) Facebook, Inc. and its affiliates. 4 | * 5 | * This source code is licensed under the MIT license found in the 6 | * LICENSE file in the root directory of this source tree. 7 | */ 8 | #import 9 | 10 | #import 11 | #import 12 | 13 | @interface AppDelegate : UIResponder 14 | 15 | @property (nonatomic, strong) UIWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios/FlatListSearch/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. 3 | * Copyright (c) Facebook, Inc. and its affiliates. 4 | * 5 | * This source code is licensed under the MIT license found in the 6 | * LICENSE file in the root directory of this source tree. 7 | */ 8 | 9 | #import "AppDelegate.h" 10 | #import 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | 20 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 22 | moduleName:@"FlatListSearch" 23 | initialProperties:nil]; 24 | 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 36 | { 37 | #if DEBUG 38 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 39 | #else 40 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 41 | #endif 42 | } 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /ios/FlatListSearch/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/FlatListSearch/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/FlatListSearch/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/FlatListSearch/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | FlatListSearch 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 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 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | Feather.ttf 59 | FontAwesome.ttf 60 | FontAwesome5_Brands.ttf 61 | FontAwesome5_Regular.ttf 62 | FontAwesome5_Solid.ttf 63 | Foundation.ttf 64 | Ionicons.ttf 65 | MaterialCommunityIcons.ttf 66 | MaterialIcons.ttf 67 | Octicons.ttf 68 | SimpleLineIcons.ttf 69 | Zocial.ttf 70 | AntDesign.ttf 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /ios/FlatListSearch/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. 3 | * Copyright (c) Facebook, Inc. and its affiliates. 4 | * 5 | * This source code is licensed under the MIT license found in the 6 | * LICENSE file in the root directory of this source tree. 7 | */ 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ios/FlatListSearchTests/FlatListSearchTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. 3 | * Copyright (c) Facebook, Inc. and its affiliates. 4 | * 5 | * This source code is licensed under the MIT license found in the 6 | * LICENSE file in the root directory of this source tree. 7 | */ 8 | 9 | #import 10 | #import 11 | 12 | #import 13 | #import 14 | 15 | #define TIMEOUT_SECONDS 600 16 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 17 | 18 | @interface FlatListSearchTests : XCTestCase 19 | 20 | @end 21 | 22 | @implementation FlatListSearchTests 23 | 24 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 25 | { 26 | if (test(view)) { 27 | return YES; 28 | } 29 | for (UIView *subview in [view subviews]) { 30 | if ([self findSubviewInView:subview matching:test]) { 31 | return YES; 32 | } 33 | } 34 | return NO; 35 | } 36 | 37 | - (void)testRendersWelcomeScreen 38 | { 39 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 40 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 41 | BOOL foundElement = NO; 42 | 43 | __block NSString *redboxError = nil; 44 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 45 | if (level >= RCTLogLevelError) { 46 | redboxError = message; 47 | } 48 | }); 49 | 50 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 51 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | 54 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 55 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 56 | return YES; 57 | } 58 | return NO; 59 | }]; 60 | } 61 | 62 | RCTSetLogFunction(RCTDefaultLogFunction); 63 | 64 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 65 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 66 | } 67 | 68 | 69 | @end 70 | -------------------------------------------------------------------------------- /ios/FlatListSearchTests/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 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | module.exports = { 8 | transformer: { 9 | getTransformOptions: async () => ({ 10 | transform: { 11 | experimentalImportSupport: false, 12 | inlineRequires: false, 13 | }, 14 | }), 15 | }, 16 | }; 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FlatListSearch", 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.8.3", 11 | "react-native": "^0.59.10", 12 | "react-native-elements": "^1.0.0", 13 | "react-native-vector-icons": "6.5.0" 14 | }, 15 | "devDependencies": { 16 | "@babel/core": "^7.4.5", 17 | "@babel/runtime": "^7.4.5", 18 | "babel-jest": "^24.8.0", 19 | "jest": "^24.8.0", 20 | "metro-react-native-babel-preset": "^0.54.1", 21 | "react-test-renderer": "16.8.3" 22 | }, 23 | "jest": { 24 | "preset": "react-native" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/SearchableList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, FlatList, ActivityIndicator } from 'react-native'; 3 | import { ListItem, SearchBar } from 'react-native-elements'; 4 | 5 | class FlatListDemo extends Component { 6 | constructor(props) { 7 | super(props); 8 | 9 | this.state = { 10 | loading: false, 11 | data: [], 12 | error: null, 13 | }; 14 | 15 | this.arrayholder = []; 16 | } 17 | 18 | componentDidMount() { 19 | this.makeRemoteRequest(); 20 | } 21 | 22 | makeRemoteRequest = () => { 23 | const url = `https://randomuser.me/api/?&results=20`; 24 | this.setState({ loading: true }); 25 | 26 | fetch(url) 27 | .then(res => res.json()) 28 | .then(res => { 29 | this.setState({ 30 | data: res.results, 31 | error: res.error || null, 32 | loading: false, 33 | }); 34 | this.arrayholder = res.results; 35 | }) 36 | .catch(error => { 37 | this.setState({ error, loading: false }); 38 | }); 39 | }; 40 | 41 | renderSeparator = () => { 42 | return ( 43 | 51 | ); 52 | }; 53 | 54 | searchFilterFunction = text => { 55 | this.setState({ 56 | value: text, 57 | }); 58 | 59 | const newData = this.arrayholder.filter(item => { 60 | const itemData = `${item.name.title.toUpperCase()} ${item.name.first.toUpperCase()} ${item.name.last.toUpperCase()}`; 61 | const textData = text.toUpperCase(); 62 | 63 | return itemData.indexOf(textData) > -1; 64 | }); 65 | this.setState({ 66 | data: newData, 67 | }); 68 | }; 69 | 70 | renderHeader = () => { 71 | return ( 72 | this.searchFilterFunction(text)} 77 | autoCorrect={false} 78 | value={this.state.value} 79 | /> 80 | ); 81 | }; 82 | 83 | render() { 84 | if (this.state.loading) { 85 | return ( 86 | 87 | 88 | 89 | ); 90 | } 91 | return ( 92 | 93 | ( 96 | 101 | )} 102 | keyExtractor={item => item.email} 103 | ItemSeparatorComponent={this.renderSeparator} 104 | ListHeaderComponent={this.renderHeader} 105 | /> 106 | 107 | ); 108 | } 109 | } 110 | 111 | export default FlatListDemo; 112 | --------------------------------------------------------------------------------