├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── SettingsScreenExample ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── 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 │ │ │ │ └── settingsscreenexample │ │ │ │ ├── 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 ├── chevron3.png ├── index.js ├── ios │ ├── SettingsScreenExample-tvOS │ │ └── Info.plist │ ├── SettingsScreenExample-tvOSTests │ │ └── Info.plist │ ├── SettingsScreenExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── SettingsScreenExample-tvOS.xcscheme │ │ │ └── SettingsScreenExample.xcscheme │ ├── SettingsScreenExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── SettingsScreenExampleTests │ │ ├── Info.plist │ │ └── SettingsScreenExampleTests.m ├── jan.jpg ├── lib │ ├── Chevron.tsx │ ├── Row.tsx │ ├── Section.tsx │ ├── SettingsScreen.tsx │ └── index.ts ├── package.json ├── tsconfig.json └── yarn.lock ├── chevron3.png ├── imgs ├── android.png └── ios.png ├── package.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | SettingsScreenExample 2 | .gitignore 3 | tsconfig.json 4 | imgs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2018 Jan Soendermann 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Native Settings Screen 2 | 3 | This library takes a JavaScript object that describes your settings and turns it into a beautiful component ready to be used. 4 | 5 | ![react-native-settings-screen ios](https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/master/imgs/ios.png) 6 | ![react-native-settings-screen android](https://github.com/jsoendermann/react-native-settings-screen/raw/master/imgs/android.png) 7 | 8 | ## Installation 9 | 10 | yarn add react-native-settings-screen 11 | 12 | ## Run Example 13 | 14 | git clone https://github.com/jsoendermann/react-native-settings-screen 15 | cd react-native-settings-screen/SettingsScreenExample 16 | yarn install 17 | yarn build 18 | react-native run-ios 19 | 20 | ## Usage 21 | 22 | `import { SettingsScreen } from "react-native-settings-screen"` 23 | 24 | `SettingsScreen` takes a `data` prop; an object that describes the content of your settings. You can learn more about the format of this object [in this file](https://github.com/jsoendermann/react-native-settings-screen/blob/master/SettingsScreenExample/App.tsx). The screen on the example screenshots above was generated from this object: 25 | 26 | ```javascript 27 | const data: SettingsData = [ 28 | { type: 'CUSTOM_VIEW', key: 'hero', render: this.renderHero }, 29 | { 30 | type: 'SECTION', 31 | header: 'My Section'.toUpperCase(), 32 | footer: 33 | 'Donec sed odio dui. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.', 34 | rows: [ 35 | { 36 | title: 'A row', 37 | showDisclosureIndicator: true, 38 | }, 39 | { title: 'A non-tappable row' }, 40 | { 41 | title: 'This row has a', 42 | subtitle: 'Subtitle', 43 | showDisclosureIndicator: true, 44 | }, 45 | { 46 | title: 'Long title. So long long long long long long long', 47 | subtitle: 48 | 'And so is the subtitle. Even longer longer longer longer longer', 49 | }, 50 | { 51 | title: 'Switch', 52 | renderAccessory: () => {}} />, 53 | }, 54 | { 55 | title: 'Text', 56 | renderAccessory: () => ( 57 | 58 | Maybe 59 | 60 | ), 61 | }, 62 | { 63 | title: 'Custom view', 64 | renderAccessory: () => ( 65 | 72 | ), 73 | showDisclosureIndicator: true, 74 | }, 75 | ], 76 | }, 77 | { 78 | type: 'SECTION', 79 | header: 'My Other Section'.toUpperCase(), 80 | rows: [ 81 | { 82 | title: 'Dolor Nullam', 83 | showDisclosureIndicator: true, 84 | }, 85 | { 86 | title: 'Nulla vitae elit libero', 87 | renderAccessory: () => ( 88 | 89 | Dapibus 90 | 91 | ), 92 | }, 93 | { 94 | title: 'Ipsum Lorem Venenatis', 95 | subtitle: 'Vestibulum Inceptos Fusce Justo', 96 | renderAccessory: () => ( 97 | 98 | Yes 99 | 100 | ), 101 | showDisclosureIndicator: true, 102 | }, 103 | { 104 | title: 'Cras Euismod', 105 | renderAccessory: () => ( 106 | 112 | ), 113 | showDisclosureIndicator: true, 114 | }, 115 | ], 116 | }, 117 | { 118 | type: 'SECTION', 119 | header: 'My Third Section'.toUpperCase(), 120 | rows: [ 121 | { 122 | title: 'Different title style', 123 | showDisclosureIndicator: true, 124 | titleStyle: { 125 | color: 'red', 126 | }, 127 | }, 128 | ], 129 | }, 130 | { 131 | type: 'CUSTOM_VIEW', 132 | render: () => ( 133 | 143 | v1.2.3 144 | 145 | ), 146 | }, 147 | ] 148 | ``` 149 | -------------------------------------------------------------------------------- /SettingsScreenExample/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /SettingsScreenExample/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /SettingsScreenExample/.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.75.0 68 | -------------------------------------------------------------------------------- /SettingsScreenExample/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /SettingsScreenExample/.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 | -------------------------------------------------------------------------------- /SettingsScreenExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /SettingsScreenExample/App.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import { 3 | StyleSheet, 4 | Text, 5 | View, 6 | StatusBar, 7 | Image, 8 | Platform, 9 | RefreshControl, 10 | Switch, 11 | } from 'react-native' 12 | import Icon from 'react-native-vector-icons/Entypo' 13 | 14 | import { SettingsScreen, SettingsData, Chevron } from './lib' 15 | 16 | const fontFamily = Platform.OS === 'ios' ? 'Avenir' : 'sans-serif' 17 | 18 | const renderHero = () => ( 19 | 20 | 21 | 22 | Jan Söndermann 23 | jan+git@primlo.com 24 | 25 | 26 | 27 | ) 28 | 29 | export default class App extends React.Component { 30 | state = { 31 | refreshing: false, 32 | } 33 | 34 | settingsData: SettingsData = [ 35 | { type: 'CUSTOM_VIEW', key: 'hero', render: renderHero }, 36 | { 37 | type: 'SECTION', 38 | header: 'My Section'.toUpperCase(), 39 | footer: 40 | 'Donec sed odio dui. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.', 41 | rows: [ 42 | { 43 | title: 'A row', 44 | showDisclosureIndicator: true, 45 | }, 46 | { title: 'A non-tappable row' }, 47 | { 48 | title: 'This row has a', 49 | subtitle: 'Subtitle', 50 | showDisclosureIndicator: true, 51 | }, 52 | { 53 | title: 'Long title. So long long long long long long long', 54 | subtitle: 55 | 'And so is the subtitle. Even longer longer longer longer longer', 56 | }, 57 | { 58 | title: 'Switch', 59 | renderAccessory: () => {}} />, 60 | }, 61 | { 62 | title: 'Text', 63 | renderAccessory: () => ( 64 | 65 | Maybe 66 | 67 | ), 68 | }, 69 | { 70 | title: 'Custom view', 71 | renderAccessory: () => ( 72 | 79 | ), 80 | showDisclosureIndicator: true, 81 | }, 82 | ], 83 | }, 84 | { 85 | type: 'SECTION', 86 | header: 'My Other Section'.toUpperCase(), 87 | rows: [ 88 | { 89 | title: 'Dolor Nullam', 90 | showDisclosureIndicator: true, 91 | }, 92 | { 93 | title: 'Nulla vitae elit libero', 94 | renderAccessory: () => ( 95 | 96 | Dapibus 97 | 98 | ), 99 | }, 100 | { 101 | title: 'Ipsum Lorem Venenatis', 102 | subtitle: 'Vestibulum Inceptos Fusce Justo', 103 | renderAccessory: () => ( 104 | 105 | Yes 106 | 107 | ), 108 | showDisclosureIndicator: true, 109 | }, 110 | { 111 | title: 'Cras Euismod', 112 | renderAccessory: () => ( 113 | 119 | ), 120 | showDisclosureIndicator: true, 121 | }, 122 | ], 123 | }, 124 | { 125 | type: 'SECTION', 126 | header: 'My Third Section'.toUpperCase(), 127 | rows: [ 128 | { 129 | title: 'Different title style', 130 | showDisclosureIndicator: true, 131 | titleStyle: { 132 | color: 'red', 133 | }, 134 | }, 135 | ], 136 | }, 137 | { 138 | type: 'CUSTOM_VIEW', 139 | render: () => ( 140 | 150 | v1.2.3 151 | 152 | ), 153 | }, 154 | ] 155 | 156 | render() { 157 | return ( 158 | 159 | 160 | 161 | Settings 162 | 163 | { 171 | this.setState({ refreshing: true }) 172 | setTimeout(() => this.setState({ refreshing: false }), 3000) 173 | }} 174 | /> 175 | ), 176 | }} 177 | /> 178 | 179 | ) 180 | } 181 | } 182 | 183 | const statusBarHeight = Platform.OS === 'ios' ? 35 : 0 184 | 185 | const styles = StyleSheet.create({ 186 | container: { 187 | flex: 1, 188 | justifyContent: 'center', 189 | alignItems: 'center', 190 | }, 191 | navBar: { 192 | backgroundColor: '#8c231c', 193 | height: 44 + statusBarHeight, 194 | alignSelf: 'stretch', 195 | paddingTop: statusBarHeight, 196 | justifyContent: 'center', 197 | alignItems: 'center', 198 | }, 199 | navBarTitle: { 200 | color: 'white', 201 | fontFamily, 202 | fontSize: 17, 203 | }, 204 | heroContainer: { 205 | marginTop: 40, 206 | marginBottom: 50, 207 | paddingVertical: 20, 208 | justifyContent: 'center', 209 | alignItems: 'center', 210 | backgroundColor: 'white', 211 | borderTopWidth: StyleSheet.hairlineWidth, 212 | borderBottomWidth: StyleSheet.hairlineWidth, 213 | borderColor: '#ccc', 214 | flexDirection: 'row', 215 | }, 216 | heroImage: { 217 | width: 80, 218 | height: 80, 219 | borderRadius: 40, 220 | borderWidth: 3, 221 | borderColor: 'black', 222 | marginHorizontal: 20, 223 | }, 224 | heroTitle: { 225 | fontFamily, 226 | color: 'black', 227 | fontSize: 24, 228 | }, 229 | heroSubtitle: { 230 | fontFamily, 231 | color: '#999', 232 | fontSize: 14, 233 | }, 234 | }) 235 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.settingsscreenexample", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.settingsscreenexample", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | buildToolsVersion rootProject.ext.buildToolsVersion 99 | 100 | defaultConfig { 101 | applicationId "com.settingsscreenexample" 102 | minSdkVersion rootProject.ext.minSdkVersion 103 | targetSdkVersion rootProject.ext.targetSdkVersion 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile project(':react-native-vector-icons') 141 | compile 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 | -------------------------------------------------------------------------------- /SettingsScreenExample/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 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/java/com/settingsscreenexample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.settingsscreenexample; 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 "SettingsScreenExample"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/java/com/settingsscreenexample/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.settingsscreenexample; 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( 26 | new MainReactPackage(), 27 | new VectorIconsPackage() 28 | ); 29 | } 30 | 31 | @Override 32 | protected String getJSMainModuleName() { 33 | return "index"; 34 | } 35 | }; 36 | 37 | @Override 38 | public ReactNativeHost getReactNativeHost() { 39 | return mReactNativeHost; 40 | } 41 | 42 | @Override 43 | public void onCreate() { 44 | super.onCreate(); 45 | SoLoader.init(this, /* native exopackage */ false); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SettingsScreenExample 3 | 4 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | maven { 7 | url 'https://maven.google.com/' 8 | name 'Google' 9 | } 10 | } 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:2.3.3' 13 | 14 | // NOTE: Do not place your application dependencies here; they belong 15 | // in the individual module build.gradle files 16 | } 17 | } 18 | 19 | allprojects { 20 | repositories { 21 | mavenLocal() 22 | jcenter() 23 | maven { 24 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 25 | url "$rootDir/../node_modules/react-native/android" 26 | } 27 | maven { 28 | url 'https://maven.google.com/' 29 | name 'Google' 30 | } 31 | } 32 | } 33 | 34 | ext { 35 | buildToolsVersion = "26.0.3" 36 | minSdkVersion = 16 37 | compileSdkVersion = 26 38 | targetSdkVersion = 26 39 | supportLibVersion = "26.1.0" 40 | } 41 | -------------------------------------------------------------------------------- /SettingsScreenExample/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 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SettingsScreenExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.5.1-all.zip 6 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /SettingsScreenExample/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 | -------------------------------------------------------------------------------- /SettingsScreenExample/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SettingsScreenExample' 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 | -------------------------------------------------------------------------------- /SettingsScreenExample/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SettingsScreenExample", 3 | "displayName": "SettingsScreenExample" 4 | } -------------------------------------------------------------------------------- /SettingsScreenExample/chevron3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/chevron3.png -------------------------------------------------------------------------------- /SettingsScreenExample/index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native' 2 | import App from './dist/App' 3 | import { name as appName } from './app.json' 4 | 5 | AppRegistry.registerComponent(appName, () => App) 6 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample-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 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample-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 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample.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 /* SettingsScreenExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SettingsScreenExampleTests.m */; }; 15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 25 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 26 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 27 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 28 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 29 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 30 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 31 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 32 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 33 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 34 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 35 | 2DCD954D1E0B4F2C00145EB5 /* SettingsScreenExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SettingsScreenExampleTests.m */; }; 36 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 37 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | 2ADBA9E997964917880A5039 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A0927EF2C00403790EA1F59 /* libRNVectorIcons.a */; }; 41 | F17ABFF7A0B14112B86A2E52 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6EE4A11150F8465C85619772 /* Entypo.ttf */; }; 42 | F2DC894979EC40DBBA8349AE /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9713E3DF41394C5096730F25 /* EvilIcons.ttf */; }; 43 | 15BF5B3B1C9542A68757938B /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ED2ADE09620F4073882200F8 /* Feather.ttf */; }; 44 | 0260F1DEE4734C85BDB43FFD /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4908B2ED10B440E29D908E7A /* FontAwesome.ttf */; }; 45 | 2B79AA0E29F742058077D8D1 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3C39A2C46EB64CEBBDEBD98B /* FontAwesome5_Brands.ttf */; }; 46 | 28278DFBDF7543E58517945D /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 749694B53497409DA9097BC3 /* FontAwesome5_Regular.ttf */; }; 47 | 8EA5ECF714144A17B260DE6B /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA7455465FE54919B51D2595 /* FontAwesome5_Solid.ttf */; }; 48 | 892FDE0FB486458592240E6C /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5FB6ED6639BB4632AD046B22 /* Foundation.ttf */; }; 49 | 224533A2313F4C0EA0290327 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AAB05DDDAE664D49B681E1BB /* Ionicons.ttf */; }; 50 | A80F3F96A3354AAFB0393568 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1021F3663389479399535A41 /* MaterialCommunityIcons.ttf */; }; 51 | 6248B6BEBDFB4E75BD3D83D3 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 83EB2DA0C3CD46CBA2EA2EAB /* MaterialIcons.ttf */; }; 52 | 140F4A4C7461488AA229B70D /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 019C6DED83DE4821AE5BF379 /* Octicons.ttf */; }; 53 | F9AC6672FF694A28A777E7FA /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4924EDBD77694F43A7C94829 /* SimpleLineIcons.ttf */; }; 54 | EA6D427BC0BB4043A515568A /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6B862D53EE8E44E2BA5153A7 /* Zocial.ttf */; }; 55 | /* End PBXBuildFile section */ 56 | 57 | /* Begin PBXContainerItemProxy section */ 58 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 59 | isa = PBXContainerItemProxy; 60 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 61 | proxyType = 2; 62 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 63 | remoteInfo = RCTActionSheet; 64 | }; 65 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 66 | isa = PBXContainerItemProxy; 67 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 68 | proxyType = 2; 69 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 70 | remoteInfo = RCTGeolocation; 71 | }; 72 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 73 | isa = PBXContainerItemProxy; 74 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 75 | proxyType = 2; 76 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 77 | remoteInfo = RCTImage; 78 | }; 79 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 80 | isa = PBXContainerItemProxy; 81 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 82 | proxyType = 2; 83 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 84 | remoteInfo = RCTNetwork; 85 | }; 86 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 87 | isa = PBXContainerItemProxy; 88 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 89 | proxyType = 2; 90 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 91 | remoteInfo = RCTVibration; 92 | }; 93 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 94 | isa = PBXContainerItemProxy; 95 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 96 | proxyType = 1; 97 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 98 | remoteInfo = SettingsScreenExample; 99 | }; 100 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 101 | isa = PBXContainerItemProxy; 102 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 103 | proxyType = 2; 104 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 105 | remoteInfo = RCTSettings; 106 | }; 107 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 108 | isa = PBXContainerItemProxy; 109 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 110 | proxyType = 2; 111 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 112 | remoteInfo = RCTWebSocket; 113 | }; 114 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 115 | isa = PBXContainerItemProxy; 116 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 117 | proxyType = 2; 118 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 119 | remoteInfo = React; 120 | }; 121 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 122 | isa = PBXContainerItemProxy; 123 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 124 | proxyType = 1; 125 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 126 | remoteInfo = "SettingsScreenExample-tvOS"; 127 | }; 128 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 129 | isa = PBXContainerItemProxy; 130 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 131 | proxyType = 2; 132 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 133 | remoteInfo = "RCTBlob-tvOS"; 134 | }; 135 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 138 | proxyType = 2; 139 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 140 | remoteInfo = fishhook; 141 | }; 142 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 145 | proxyType = 2; 146 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 147 | remoteInfo = "fishhook-tvOS"; 148 | }; 149 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 150 | isa = PBXContainerItemProxy; 151 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 152 | proxyType = 2; 153 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 154 | remoteInfo = jsinspector; 155 | }; 156 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 157 | isa = PBXContainerItemProxy; 158 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 159 | proxyType = 2; 160 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 161 | remoteInfo = "jsinspector-tvOS"; 162 | }; 163 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 164 | isa = PBXContainerItemProxy; 165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 166 | proxyType = 2; 167 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 168 | remoteInfo = "third-party"; 169 | }; 170 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 171 | isa = PBXContainerItemProxy; 172 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 173 | proxyType = 2; 174 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 175 | remoteInfo = "third-party-tvOS"; 176 | }; 177 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 178 | isa = PBXContainerItemProxy; 179 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 180 | proxyType = 2; 181 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 182 | remoteInfo = "double-conversion"; 183 | }; 184 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 185 | isa = PBXContainerItemProxy; 186 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 187 | proxyType = 2; 188 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 189 | remoteInfo = "double-conversion-tvOS"; 190 | }; 191 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 192 | isa = PBXContainerItemProxy; 193 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 194 | proxyType = 2; 195 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 196 | remoteInfo = privatedata; 197 | }; 198 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 199 | isa = PBXContainerItemProxy; 200 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 201 | proxyType = 2; 202 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 203 | remoteInfo = "privatedata-tvOS"; 204 | }; 205 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 206 | isa = PBXContainerItemProxy; 207 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 208 | proxyType = 2; 209 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 210 | remoteInfo = "RCTImage-tvOS"; 211 | }; 212 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 213 | isa = PBXContainerItemProxy; 214 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 215 | proxyType = 2; 216 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 217 | remoteInfo = "RCTLinking-tvOS"; 218 | }; 219 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 220 | isa = PBXContainerItemProxy; 221 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 222 | proxyType = 2; 223 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 224 | remoteInfo = "RCTNetwork-tvOS"; 225 | }; 226 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 227 | isa = PBXContainerItemProxy; 228 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 229 | proxyType = 2; 230 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 231 | remoteInfo = "RCTSettings-tvOS"; 232 | }; 233 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 234 | isa = PBXContainerItemProxy; 235 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 236 | proxyType = 2; 237 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 238 | remoteInfo = "RCTText-tvOS"; 239 | }; 240 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 241 | isa = PBXContainerItemProxy; 242 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 243 | proxyType = 2; 244 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 245 | remoteInfo = "RCTWebSocket-tvOS"; 246 | }; 247 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 248 | isa = PBXContainerItemProxy; 249 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 250 | proxyType = 2; 251 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 252 | remoteInfo = "React-tvOS"; 253 | }; 254 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 255 | isa = PBXContainerItemProxy; 256 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 257 | proxyType = 2; 258 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 259 | remoteInfo = yoga; 260 | }; 261 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 262 | isa = PBXContainerItemProxy; 263 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 264 | proxyType = 2; 265 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 266 | remoteInfo = "yoga-tvOS"; 267 | }; 268 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 269 | isa = PBXContainerItemProxy; 270 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 271 | proxyType = 2; 272 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 273 | remoteInfo = cxxreact; 274 | }; 275 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 276 | isa = PBXContainerItemProxy; 277 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 278 | proxyType = 2; 279 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 280 | remoteInfo = "cxxreact-tvOS"; 281 | }; 282 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 283 | isa = PBXContainerItemProxy; 284 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 285 | proxyType = 2; 286 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 287 | remoteInfo = jschelpers; 288 | }; 289 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 290 | isa = PBXContainerItemProxy; 291 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 292 | proxyType = 2; 293 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 294 | remoteInfo = "jschelpers-tvOS"; 295 | }; 296 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 297 | isa = PBXContainerItemProxy; 298 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 299 | proxyType = 2; 300 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 301 | remoteInfo = RCTAnimation; 302 | }; 303 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 304 | isa = PBXContainerItemProxy; 305 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 306 | proxyType = 2; 307 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 308 | remoteInfo = "RCTAnimation-tvOS"; 309 | }; 310 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 311 | isa = PBXContainerItemProxy; 312 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 313 | proxyType = 2; 314 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 315 | remoteInfo = RCTLinking; 316 | }; 317 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 318 | isa = PBXContainerItemProxy; 319 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 320 | proxyType = 2; 321 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 322 | remoteInfo = RCTText; 323 | }; 324 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 325 | isa = PBXContainerItemProxy; 326 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 327 | proxyType = 2; 328 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 329 | remoteInfo = RCTBlob; 330 | }; 331 | /* End PBXContainerItemProxy section */ 332 | 333 | /* Begin PBXFileReference section */ 334 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 335 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 336 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 337 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 338 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 339 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 340 | 00E356EE1AD99517003FC87E /* SettingsScreenExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SettingsScreenExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 341 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 342 | 00E356F21AD99517003FC87E /* SettingsScreenExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingsScreenExampleTests.m; sourceTree = ""; }; 343 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 344 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 345 | 13B07F961A680F5B00A75B9A /* SettingsScreenExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SettingsScreenExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 346 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = SettingsScreenExample/AppDelegate.h; sourceTree = ""; }; 347 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = SettingsScreenExample/AppDelegate.m; sourceTree = ""; }; 348 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 349 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = SettingsScreenExample/Images.xcassets; sourceTree = ""; }; 350 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SettingsScreenExample/Info.plist; sourceTree = ""; }; 351 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SettingsScreenExample/main.m; sourceTree = ""; }; 352 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 353 | 2D02E47B1E0B4A5D006451C7 /* SettingsScreenExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "SettingsScreenExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 354 | 2D02E4901E0B4A5D006451C7 /* SettingsScreenExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SettingsScreenExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 355 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 356 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 357 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 358 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 359 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 360 | F465C7FFEE594241AE742342 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 361 | 0A0927EF2C00403790EA1F59 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 362 | 6EE4A11150F8465C85619772 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 363 | 9713E3DF41394C5096730F25 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 364 | ED2ADE09620F4073882200F8 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 365 | 4908B2ED10B440E29D908E7A /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 366 | 3C39A2C46EB64CEBBDEBD98B /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 367 | 749694B53497409DA9097BC3 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 368 | FA7455465FE54919B51D2595 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 369 | 5FB6ED6639BB4632AD046B22 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 370 | AAB05DDDAE664D49B681E1BB /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 371 | 1021F3663389479399535A41 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 372 | 83EB2DA0C3CD46CBA2EA2EAB /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 373 | 019C6DED83DE4821AE5BF379 /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 374 | 4924EDBD77694F43A7C94829 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 375 | 6B862D53EE8E44E2BA5153A7 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 376 | /* End PBXFileReference section */ 377 | 378 | /* Begin PBXFrameworksBuildPhase section */ 379 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 380 | isa = PBXFrameworksBuildPhase; 381 | buildActionMask = 2147483647; 382 | files = ( 383 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 384 | ); 385 | runOnlyForDeploymentPostprocessing = 0; 386 | }; 387 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 388 | isa = PBXFrameworksBuildPhase; 389 | buildActionMask = 2147483647; 390 | files = ( 391 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 392 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 393 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 394 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 395 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 396 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 397 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 398 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 399 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 400 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 401 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 402 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 403 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 404 | 2ADBA9E997964917880A5039 /* libRNVectorIcons.a in Frameworks */, 405 | ); 406 | runOnlyForDeploymentPostprocessing = 0; 407 | }; 408 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 409 | isa = PBXFrameworksBuildPhase; 410 | buildActionMask = 2147483647; 411 | files = ( 412 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 413 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 414 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 415 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 416 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 417 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 418 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 419 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 420 | ); 421 | runOnlyForDeploymentPostprocessing = 0; 422 | }; 423 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 424 | isa = PBXFrameworksBuildPhase; 425 | buildActionMask = 2147483647; 426 | files = ( 427 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 428 | ); 429 | runOnlyForDeploymentPostprocessing = 0; 430 | }; 431 | /* End PBXFrameworksBuildPhase section */ 432 | 433 | /* Begin PBXGroup section */ 434 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 435 | isa = PBXGroup; 436 | children = ( 437 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 438 | ); 439 | name = Products; 440 | sourceTree = ""; 441 | }; 442 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 443 | isa = PBXGroup; 444 | children = ( 445 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 446 | ); 447 | name = Products; 448 | sourceTree = ""; 449 | }; 450 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 454 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 455 | ); 456 | name = Products; 457 | sourceTree = ""; 458 | }; 459 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 460 | isa = PBXGroup; 461 | children = ( 462 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 463 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 464 | ); 465 | name = Products; 466 | sourceTree = ""; 467 | }; 468 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 469 | isa = PBXGroup; 470 | children = ( 471 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 472 | ); 473 | name = Products; 474 | sourceTree = ""; 475 | }; 476 | 00E356EF1AD99517003FC87E /* SettingsScreenExampleTests */ = { 477 | isa = PBXGroup; 478 | children = ( 479 | 00E356F21AD99517003FC87E /* SettingsScreenExampleTests.m */, 480 | 00E356F01AD99517003FC87E /* Supporting Files */, 481 | ); 482 | path = SettingsScreenExampleTests; 483 | sourceTree = ""; 484 | }; 485 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 486 | isa = PBXGroup; 487 | children = ( 488 | 00E356F11AD99517003FC87E /* Info.plist */, 489 | ); 490 | name = "Supporting Files"; 491 | sourceTree = ""; 492 | }; 493 | 139105B71AF99BAD00B5F7CC /* Products */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 497 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 498 | ); 499 | name = Products; 500 | sourceTree = ""; 501 | }; 502 | 139FDEE71B06529A00C62182 /* Products */ = { 503 | isa = PBXGroup; 504 | children = ( 505 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 506 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 507 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 508 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 509 | ); 510 | name = Products; 511 | sourceTree = ""; 512 | }; 513 | 13B07FAE1A68108700A75B9A /* SettingsScreenExample */ = { 514 | isa = PBXGroup; 515 | children = ( 516 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 517 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 518 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 519 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 520 | 13B07FB61A68108700A75B9A /* Info.plist */, 521 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 522 | 13B07FB71A68108700A75B9A /* main.m */, 523 | ); 524 | name = SettingsScreenExample; 525 | sourceTree = ""; 526 | }; 527 | 146834001AC3E56700842450 /* Products */ = { 528 | isa = PBXGroup; 529 | children = ( 530 | 146834041AC3E56700842450 /* libReact.a */, 531 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 532 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 533 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 534 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 535 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 536 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 537 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 538 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 539 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 540 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 541 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 542 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 543 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 544 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 545 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 546 | ); 547 | name = Products; 548 | sourceTree = ""; 549 | }; 550 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 551 | isa = PBXGroup; 552 | children = ( 553 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 554 | ); 555 | name = Frameworks; 556 | sourceTree = ""; 557 | }; 558 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 559 | isa = PBXGroup; 560 | children = ( 561 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 562 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 563 | ); 564 | name = Products; 565 | sourceTree = ""; 566 | }; 567 | 78C398B11ACF4ADC00677621 /* Products */ = { 568 | isa = PBXGroup; 569 | children = ( 570 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 571 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 572 | ); 573 | name = Products; 574 | sourceTree = ""; 575 | }; 576 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 577 | isa = PBXGroup; 578 | children = ( 579 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 580 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 581 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 582 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 583 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 584 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 585 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 586 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 587 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 588 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 589 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 590 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 591 | F465C7FFEE594241AE742342 /* RNVectorIcons.xcodeproj */, 592 | ); 593 | name = Libraries; 594 | sourceTree = ""; 595 | }; 596 | 832341B11AAA6A8300B99B32 /* Products */ = { 597 | isa = PBXGroup; 598 | children = ( 599 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 600 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 601 | ); 602 | name = Products; 603 | sourceTree = ""; 604 | }; 605 | 83CBB9F61A601CBA00E9B192 = { 606 | isa = PBXGroup; 607 | children = ( 608 | 13B07FAE1A68108700A75B9A /* SettingsScreenExample */, 609 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 610 | 00E356EF1AD99517003FC87E /* SettingsScreenExampleTests */, 611 | 83CBBA001A601CBA00E9B192 /* Products */, 612 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 613 | 1C4C4BD126314484860765B6 /* Resources */, 614 | ); 615 | indentWidth = 2; 616 | sourceTree = ""; 617 | tabWidth = 2; 618 | usesTabs = 0; 619 | }; 620 | 83CBBA001A601CBA00E9B192 /* Products */ = { 621 | isa = PBXGroup; 622 | children = ( 623 | 13B07F961A680F5B00A75B9A /* SettingsScreenExample.app */, 624 | 00E356EE1AD99517003FC87E /* SettingsScreenExampleTests.xctest */, 625 | 2D02E47B1E0B4A5D006451C7 /* SettingsScreenExample-tvOS.app */, 626 | 2D02E4901E0B4A5D006451C7 /* SettingsScreenExample-tvOSTests.xctest */, 627 | ); 628 | name = Products; 629 | sourceTree = ""; 630 | }; 631 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 632 | isa = PBXGroup; 633 | children = ( 634 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 635 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 636 | ); 637 | name = Products; 638 | sourceTree = ""; 639 | }; 640 | 1C4C4BD126314484860765B6 /* Resources */ = { 641 | isa = "PBXGroup"; 642 | children = ( 643 | 6EE4A11150F8465C85619772 /* Entypo.ttf */, 644 | 9713E3DF41394C5096730F25 /* EvilIcons.ttf */, 645 | ED2ADE09620F4073882200F8 /* Feather.ttf */, 646 | 4908B2ED10B440E29D908E7A /* FontAwesome.ttf */, 647 | 3C39A2C46EB64CEBBDEBD98B /* FontAwesome5_Brands.ttf */, 648 | 749694B53497409DA9097BC3 /* FontAwesome5_Regular.ttf */, 649 | FA7455465FE54919B51D2595 /* FontAwesome5_Solid.ttf */, 650 | 5FB6ED6639BB4632AD046B22 /* Foundation.ttf */, 651 | AAB05DDDAE664D49B681E1BB /* Ionicons.ttf */, 652 | 1021F3663389479399535A41 /* MaterialCommunityIcons.ttf */, 653 | 83EB2DA0C3CD46CBA2EA2EAB /* MaterialIcons.ttf */, 654 | 019C6DED83DE4821AE5BF379 /* Octicons.ttf */, 655 | 4924EDBD77694F43A7C94829 /* SimpleLineIcons.ttf */, 656 | 6B862D53EE8E44E2BA5153A7 /* Zocial.ttf */, 657 | ); 658 | name = Resources; 659 | sourceTree = ""; 660 | path = ""; 661 | }; 662 | /* End PBXGroup section */ 663 | 664 | /* Begin PBXNativeTarget section */ 665 | 00E356ED1AD99517003FC87E /* SettingsScreenExampleTests */ = { 666 | isa = PBXNativeTarget; 667 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SettingsScreenExampleTests" */; 668 | buildPhases = ( 669 | 00E356EA1AD99517003FC87E /* Sources */, 670 | 00E356EB1AD99517003FC87E /* Frameworks */, 671 | 00E356EC1AD99517003FC87E /* Resources */, 672 | ); 673 | buildRules = ( 674 | ); 675 | dependencies = ( 676 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 677 | ); 678 | name = SettingsScreenExampleTests; 679 | productName = SettingsScreenExampleTests; 680 | productReference = 00E356EE1AD99517003FC87E /* SettingsScreenExampleTests.xctest */; 681 | productType = "com.apple.product-type.bundle.unit-test"; 682 | }; 683 | 13B07F861A680F5B00A75B9A /* SettingsScreenExample */ = { 684 | isa = PBXNativeTarget; 685 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SettingsScreenExample" */; 686 | buildPhases = ( 687 | 13B07F871A680F5B00A75B9A /* Sources */, 688 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 689 | 13B07F8E1A680F5B00A75B9A /* Resources */, 690 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 691 | ); 692 | buildRules = ( 693 | ); 694 | dependencies = ( 695 | ); 696 | name = SettingsScreenExample; 697 | productName = "Hello World"; 698 | productReference = 13B07F961A680F5B00A75B9A /* SettingsScreenExample.app */; 699 | productType = "com.apple.product-type.application"; 700 | }; 701 | 2D02E47A1E0B4A5D006451C7 /* SettingsScreenExample-tvOS */ = { 702 | isa = PBXNativeTarget; 703 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SettingsScreenExample-tvOS" */; 704 | buildPhases = ( 705 | 2D02E4771E0B4A5D006451C7 /* Sources */, 706 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 707 | 2D02E4791E0B4A5D006451C7 /* Resources */, 708 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 709 | ); 710 | buildRules = ( 711 | ); 712 | dependencies = ( 713 | ); 714 | name = "SettingsScreenExample-tvOS"; 715 | productName = "SettingsScreenExample-tvOS"; 716 | productReference = 2D02E47B1E0B4A5D006451C7 /* SettingsScreenExample-tvOS.app */; 717 | productType = "com.apple.product-type.application"; 718 | }; 719 | 2D02E48F1E0B4A5D006451C7 /* SettingsScreenExample-tvOSTests */ = { 720 | isa = PBXNativeTarget; 721 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SettingsScreenExample-tvOSTests" */; 722 | buildPhases = ( 723 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 724 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 725 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 726 | ); 727 | buildRules = ( 728 | ); 729 | dependencies = ( 730 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 731 | ); 732 | name = "SettingsScreenExample-tvOSTests"; 733 | productName = "SettingsScreenExample-tvOSTests"; 734 | productReference = 2D02E4901E0B4A5D006451C7 /* SettingsScreenExample-tvOSTests.xctest */; 735 | productType = "com.apple.product-type.bundle.unit-test"; 736 | }; 737 | /* End PBXNativeTarget section */ 738 | 739 | /* Begin PBXProject section */ 740 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 741 | isa = PBXProject; 742 | attributes = { 743 | LastUpgradeCheck = 610; 744 | ORGANIZATIONNAME = Facebook; 745 | TargetAttributes = { 746 | 00E356ED1AD99517003FC87E = { 747 | CreatedOnToolsVersion = 6.2; 748 | TestTargetID = 13B07F861A680F5B00A75B9A; 749 | }; 750 | 2D02E47A1E0B4A5D006451C7 = { 751 | CreatedOnToolsVersion = 8.2.1; 752 | ProvisioningStyle = Automatic; 753 | }; 754 | 2D02E48F1E0B4A5D006451C7 = { 755 | CreatedOnToolsVersion = 8.2.1; 756 | ProvisioningStyle = Automatic; 757 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 758 | }; 759 | }; 760 | }; 761 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SettingsScreenExample" */; 762 | compatibilityVersion = "Xcode 3.2"; 763 | developmentRegion = English; 764 | hasScannedForEncodings = 0; 765 | knownRegions = ( 766 | en, 767 | Base, 768 | ); 769 | mainGroup = 83CBB9F61A601CBA00E9B192; 770 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 771 | projectDirPath = ""; 772 | projectReferences = ( 773 | { 774 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 775 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 776 | }, 777 | { 778 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 779 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 780 | }, 781 | { 782 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 783 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 784 | }, 785 | { 786 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 787 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 788 | }, 789 | { 790 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 791 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 792 | }, 793 | { 794 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 795 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 796 | }, 797 | { 798 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 799 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 800 | }, 801 | { 802 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 803 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 804 | }, 805 | { 806 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 807 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 808 | }, 809 | { 810 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 811 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 812 | }, 813 | { 814 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 815 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 816 | }, 817 | { 818 | ProductGroup = 146834001AC3E56700842450 /* Products */; 819 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 820 | }, 821 | ); 822 | projectRoot = ""; 823 | targets = ( 824 | 13B07F861A680F5B00A75B9A /* SettingsScreenExample */, 825 | 00E356ED1AD99517003FC87E /* SettingsScreenExampleTests */, 826 | 2D02E47A1E0B4A5D006451C7 /* SettingsScreenExample-tvOS */, 827 | 2D02E48F1E0B4A5D006451C7 /* SettingsScreenExample-tvOSTests */, 828 | ); 829 | }; 830 | /* End PBXProject section */ 831 | 832 | /* Begin PBXReferenceProxy section */ 833 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 834 | isa = PBXReferenceProxy; 835 | fileType = archive.ar; 836 | path = libRCTActionSheet.a; 837 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 838 | sourceTree = BUILT_PRODUCTS_DIR; 839 | }; 840 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 841 | isa = PBXReferenceProxy; 842 | fileType = archive.ar; 843 | path = libRCTGeolocation.a; 844 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 845 | sourceTree = BUILT_PRODUCTS_DIR; 846 | }; 847 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 848 | isa = PBXReferenceProxy; 849 | fileType = archive.ar; 850 | path = libRCTImage.a; 851 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 852 | sourceTree = BUILT_PRODUCTS_DIR; 853 | }; 854 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 855 | isa = PBXReferenceProxy; 856 | fileType = archive.ar; 857 | path = libRCTNetwork.a; 858 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 859 | sourceTree = BUILT_PRODUCTS_DIR; 860 | }; 861 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 862 | isa = PBXReferenceProxy; 863 | fileType = archive.ar; 864 | path = libRCTVibration.a; 865 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 866 | sourceTree = BUILT_PRODUCTS_DIR; 867 | }; 868 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 869 | isa = PBXReferenceProxy; 870 | fileType = archive.ar; 871 | path = libRCTSettings.a; 872 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 873 | sourceTree = BUILT_PRODUCTS_DIR; 874 | }; 875 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 876 | isa = PBXReferenceProxy; 877 | fileType = archive.ar; 878 | path = libRCTWebSocket.a; 879 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 880 | sourceTree = BUILT_PRODUCTS_DIR; 881 | }; 882 | 146834041AC3E56700842450 /* libReact.a */ = { 883 | isa = PBXReferenceProxy; 884 | fileType = archive.ar; 885 | path = libReact.a; 886 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 887 | sourceTree = BUILT_PRODUCTS_DIR; 888 | }; 889 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 890 | isa = PBXReferenceProxy; 891 | fileType = archive.ar; 892 | path = "libRCTBlob-tvOS.a"; 893 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 894 | sourceTree = BUILT_PRODUCTS_DIR; 895 | }; 896 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 897 | isa = PBXReferenceProxy; 898 | fileType = archive.ar; 899 | path = libfishhook.a; 900 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 901 | sourceTree = BUILT_PRODUCTS_DIR; 902 | }; 903 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 904 | isa = PBXReferenceProxy; 905 | fileType = archive.ar; 906 | path = "libfishhook-tvOS.a"; 907 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 908 | sourceTree = BUILT_PRODUCTS_DIR; 909 | }; 910 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 911 | isa = PBXReferenceProxy; 912 | fileType = archive.ar; 913 | path = libjsinspector.a; 914 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 915 | sourceTree = BUILT_PRODUCTS_DIR; 916 | }; 917 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 918 | isa = PBXReferenceProxy; 919 | fileType = archive.ar; 920 | path = "libjsinspector-tvOS.a"; 921 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 922 | sourceTree = BUILT_PRODUCTS_DIR; 923 | }; 924 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 925 | isa = PBXReferenceProxy; 926 | fileType = archive.ar; 927 | path = "libthird-party.a"; 928 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 929 | sourceTree = BUILT_PRODUCTS_DIR; 930 | }; 931 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 932 | isa = PBXReferenceProxy; 933 | fileType = archive.ar; 934 | path = "libthird-party.a"; 935 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 936 | sourceTree = BUILT_PRODUCTS_DIR; 937 | }; 938 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 939 | isa = PBXReferenceProxy; 940 | fileType = archive.ar; 941 | path = "libdouble-conversion.a"; 942 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 943 | sourceTree = BUILT_PRODUCTS_DIR; 944 | }; 945 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 946 | isa = PBXReferenceProxy; 947 | fileType = archive.ar; 948 | path = "libdouble-conversion.a"; 949 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 950 | sourceTree = BUILT_PRODUCTS_DIR; 951 | }; 952 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 953 | isa = PBXReferenceProxy; 954 | fileType = archive.ar; 955 | path = libprivatedata.a; 956 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 957 | sourceTree = BUILT_PRODUCTS_DIR; 958 | }; 959 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 960 | isa = PBXReferenceProxy; 961 | fileType = archive.ar; 962 | path = "libprivatedata-tvOS.a"; 963 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 964 | sourceTree = BUILT_PRODUCTS_DIR; 965 | }; 966 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 967 | isa = PBXReferenceProxy; 968 | fileType = archive.ar; 969 | path = "libRCTImage-tvOS.a"; 970 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 971 | sourceTree = BUILT_PRODUCTS_DIR; 972 | }; 973 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 974 | isa = PBXReferenceProxy; 975 | fileType = archive.ar; 976 | path = "libRCTLinking-tvOS.a"; 977 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 978 | sourceTree = BUILT_PRODUCTS_DIR; 979 | }; 980 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 981 | isa = PBXReferenceProxy; 982 | fileType = archive.ar; 983 | path = "libRCTNetwork-tvOS.a"; 984 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 985 | sourceTree = BUILT_PRODUCTS_DIR; 986 | }; 987 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 988 | isa = PBXReferenceProxy; 989 | fileType = archive.ar; 990 | path = "libRCTSettings-tvOS.a"; 991 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 992 | sourceTree = BUILT_PRODUCTS_DIR; 993 | }; 994 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 995 | isa = PBXReferenceProxy; 996 | fileType = archive.ar; 997 | path = "libRCTText-tvOS.a"; 998 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 999 | sourceTree = BUILT_PRODUCTS_DIR; 1000 | }; 1001 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1002 | isa = PBXReferenceProxy; 1003 | fileType = archive.ar; 1004 | path = "libRCTWebSocket-tvOS.a"; 1005 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1006 | sourceTree = BUILT_PRODUCTS_DIR; 1007 | }; 1008 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1009 | isa = PBXReferenceProxy; 1010 | fileType = archive.ar; 1011 | path = libReact.a; 1012 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1013 | sourceTree = BUILT_PRODUCTS_DIR; 1014 | }; 1015 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1016 | isa = PBXReferenceProxy; 1017 | fileType = archive.ar; 1018 | path = libyoga.a; 1019 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1020 | sourceTree = BUILT_PRODUCTS_DIR; 1021 | }; 1022 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1023 | isa = PBXReferenceProxy; 1024 | fileType = archive.ar; 1025 | path = libyoga.a; 1026 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1027 | sourceTree = BUILT_PRODUCTS_DIR; 1028 | }; 1029 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1030 | isa = PBXReferenceProxy; 1031 | fileType = archive.ar; 1032 | path = libcxxreact.a; 1033 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1034 | sourceTree = BUILT_PRODUCTS_DIR; 1035 | }; 1036 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1037 | isa = PBXReferenceProxy; 1038 | fileType = archive.ar; 1039 | path = libcxxreact.a; 1040 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1041 | sourceTree = BUILT_PRODUCTS_DIR; 1042 | }; 1043 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1044 | isa = PBXReferenceProxy; 1045 | fileType = archive.ar; 1046 | path = libjschelpers.a; 1047 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1048 | sourceTree = BUILT_PRODUCTS_DIR; 1049 | }; 1050 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1051 | isa = PBXReferenceProxy; 1052 | fileType = archive.ar; 1053 | path = libjschelpers.a; 1054 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1055 | sourceTree = BUILT_PRODUCTS_DIR; 1056 | }; 1057 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1058 | isa = PBXReferenceProxy; 1059 | fileType = archive.ar; 1060 | path = libRCTAnimation.a; 1061 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1062 | sourceTree = BUILT_PRODUCTS_DIR; 1063 | }; 1064 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1065 | isa = PBXReferenceProxy; 1066 | fileType = archive.ar; 1067 | path = libRCTAnimation.a; 1068 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1069 | sourceTree = BUILT_PRODUCTS_DIR; 1070 | }; 1071 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1072 | isa = PBXReferenceProxy; 1073 | fileType = archive.ar; 1074 | path = libRCTLinking.a; 1075 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1076 | sourceTree = BUILT_PRODUCTS_DIR; 1077 | }; 1078 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1079 | isa = PBXReferenceProxy; 1080 | fileType = archive.ar; 1081 | path = libRCTText.a; 1082 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1083 | sourceTree = BUILT_PRODUCTS_DIR; 1084 | }; 1085 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1086 | isa = PBXReferenceProxy; 1087 | fileType = archive.ar; 1088 | path = libRCTBlob.a; 1089 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1090 | sourceTree = BUILT_PRODUCTS_DIR; 1091 | }; 1092 | /* End PBXReferenceProxy section */ 1093 | 1094 | /* Begin PBXResourcesBuildPhase section */ 1095 | 00E356EC1AD99517003FC87E /* Resources */ = { 1096 | isa = PBXResourcesBuildPhase; 1097 | buildActionMask = 2147483647; 1098 | files = ( 1099 | ); 1100 | runOnlyForDeploymentPostprocessing = 0; 1101 | }; 1102 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1103 | isa = PBXResourcesBuildPhase; 1104 | buildActionMask = 2147483647; 1105 | files = ( 1106 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1107 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1108 | F17ABFF7A0B14112B86A2E52 /* Entypo.ttf in Resources */, 1109 | F2DC894979EC40DBBA8349AE /* EvilIcons.ttf in Resources */, 1110 | 15BF5B3B1C9542A68757938B /* Feather.ttf in Resources */, 1111 | 0260F1DEE4734C85BDB43FFD /* FontAwesome.ttf in Resources */, 1112 | 2B79AA0E29F742058077D8D1 /* FontAwesome5_Brands.ttf in Resources */, 1113 | 28278DFBDF7543E58517945D /* FontAwesome5_Regular.ttf in Resources */, 1114 | 8EA5ECF714144A17B260DE6B /* FontAwesome5_Solid.ttf in Resources */, 1115 | 892FDE0FB486458592240E6C /* Foundation.ttf in Resources */, 1116 | 224533A2313F4C0EA0290327 /* Ionicons.ttf in Resources */, 1117 | A80F3F96A3354AAFB0393568 /* MaterialCommunityIcons.ttf in Resources */, 1118 | 6248B6BEBDFB4E75BD3D83D3 /* MaterialIcons.ttf in Resources */, 1119 | 140F4A4C7461488AA229B70D /* Octicons.ttf in Resources */, 1120 | F9AC6672FF694A28A777E7FA /* SimpleLineIcons.ttf in Resources */, 1121 | EA6D427BC0BB4043A515568A /* Zocial.ttf in Resources */, 1122 | ); 1123 | runOnlyForDeploymentPostprocessing = 0; 1124 | }; 1125 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1126 | isa = PBXResourcesBuildPhase; 1127 | buildActionMask = 2147483647; 1128 | files = ( 1129 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1130 | ); 1131 | runOnlyForDeploymentPostprocessing = 0; 1132 | }; 1133 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1134 | isa = PBXResourcesBuildPhase; 1135 | buildActionMask = 2147483647; 1136 | files = ( 1137 | ); 1138 | runOnlyForDeploymentPostprocessing = 0; 1139 | }; 1140 | /* End PBXResourcesBuildPhase section */ 1141 | 1142 | /* Begin PBXShellScriptBuildPhase section */ 1143 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1144 | isa = PBXShellScriptBuildPhase; 1145 | buildActionMask = 2147483647; 1146 | files = ( 1147 | ); 1148 | inputPaths = ( 1149 | ); 1150 | name = "Bundle React Native code and images"; 1151 | outputPaths = ( 1152 | ); 1153 | runOnlyForDeploymentPostprocessing = 0; 1154 | shellPath = /bin/sh; 1155 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1156 | }; 1157 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1158 | isa = PBXShellScriptBuildPhase; 1159 | buildActionMask = 2147483647; 1160 | files = ( 1161 | ); 1162 | inputPaths = ( 1163 | ); 1164 | name = "Bundle React Native Code And Images"; 1165 | outputPaths = ( 1166 | ); 1167 | runOnlyForDeploymentPostprocessing = 0; 1168 | shellPath = /bin/sh; 1169 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1170 | }; 1171 | /* End PBXShellScriptBuildPhase section */ 1172 | 1173 | /* Begin PBXSourcesBuildPhase section */ 1174 | 00E356EA1AD99517003FC87E /* Sources */ = { 1175 | isa = PBXSourcesBuildPhase; 1176 | buildActionMask = 2147483647; 1177 | files = ( 1178 | 00E356F31AD99517003FC87E /* SettingsScreenExampleTests.m in Sources */, 1179 | ); 1180 | runOnlyForDeploymentPostprocessing = 0; 1181 | }; 1182 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1183 | isa = PBXSourcesBuildPhase; 1184 | buildActionMask = 2147483647; 1185 | files = ( 1186 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1187 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1188 | ); 1189 | runOnlyForDeploymentPostprocessing = 0; 1190 | }; 1191 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1192 | isa = PBXSourcesBuildPhase; 1193 | buildActionMask = 2147483647; 1194 | files = ( 1195 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1196 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1197 | ); 1198 | runOnlyForDeploymentPostprocessing = 0; 1199 | }; 1200 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1201 | isa = PBXSourcesBuildPhase; 1202 | buildActionMask = 2147483647; 1203 | files = ( 1204 | 2DCD954D1E0B4F2C00145EB5 /* SettingsScreenExampleTests.m in Sources */, 1205 | ); 1206 | runOnlyForDeploymentPostprocessing = 0; 1207 | }; 1208 | /* End PBXSourcesBuildPhase section */ 1209 | 1210 | /* Begin PBXTargetDependency section */ 1211 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1212 | isa = PBXTargetDependency; 1213 | target = 13B07F861A680F5B00A75B9A /* SettingsScreenExample */; 1214 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1215 | }; 1216 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1217 | isa = PBXTargetDependency; 1218 | target = 2D02E47A1E0B4A5D006451C7 /* SettingsScreenExample-tvOS */; 1219 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1220 | }; 1221 | /* End PBXTargetDependency section */ 1222 | 1223 | /* Begin PBXVariantGroup section */ 1224 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1225 | isa = PBXVariantGroup; 1226 | children = ( 1227 | 13B07FB21A68108700A75B9A /* Base */, 1228 | ); 1229 | name = LaunchScreen.xib; 1230 | path = SettingsScreenExample; 1231 | sourceTree = ""; 1232 | }; 1233 | /* End PBXVariantGroup section */ 1234 | 1235 | /* Begin XCBuildConfiguration section */ 1236 | 00E356F61AD99517003FC87E /* Debug */ = { 1237 | isa = XCBuildConfiguration; 1238 | buildSettings = { 1239 | BUNDLE_LOADER = "$(TEST_HOST)"; 1240 | GCC_PREPROCESSOR_DEFINITIONS = ( 1241 | "DEBUG=1", 1242 | "$(inherited)", 1243 | ); 1244 | INFOPLIST_FILE = SettingsScreenExampleTests/Info.plist; 1245 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1246 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1247 | OTHER_LDFLAGS = ( 1248 | "-ObjC", 1249 | "-lc++", 1250 | ); 1251 | PRODUCT_NAME = "$(TARGET_NAME)"; 1252 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SettingsScreenExample.app/SettingsScreenExample"; 1253 | LIBRARY_SEARCH_PATHS = ( 1254 | "$(inherited)", 1255 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1256 | ); 1257 | HEADER_SEARCH_PATHS = ( 1258 | "$(inherited)", 1259 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1260 | ); 1261 | }; 1262 | name = Debug; 1263 | }; 1264 | 00E356F71AD99517003FC87E /* Release */ = { 1265 | isa = XCBuildConfiguration; 1266 | buildSettings = { 1267 | BUNDLE_LOADER = "$(TEST_HOST)"; 1268 | COPY_PHASE_STRIP = NO; 1269 | INFOPLIST_FILE = SettingsScreenExampleTests/Info.plist; 1270 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1271 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1272 | OTHER_LDFLAGS = ( 1273 | "-ObjC", 1274 | "-lc++", 1275 | ); 1276 | PRODUCT_NAME = "$(TARGET_NAME)"; 1277 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SettingsScreenExample.app/SettingsScreenExample"; 1278 | LIBRARY_SEARCH_PATHS = ( 1279 | "$(inherited)", 1280 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1281 | ); 1282 | HEADER_SEARCH_PATHS = ( 1283 | "$(inherited)", 1284 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1285 | ); 1286 | }; 1287 | name = Release; 1288 | }; 1289 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1290 | isa = XCBuildConfiguration; 1291 | buildSettings = { 1292 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1293 | CURRENT_PROJECT_VERSION = 1; 1294 | DEAD_CODE_STRIPPING = NO; 1295 | INFOPLIST_FILE = SettingsScreenExample/Info.plist; 1296 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1297 | OTHER_LDFLAGS = ( 1298 | "$(inherited)", 1299 | "-ObjC", 1300 | "-lc++", 1301 | ); 1302 | PRODUCT_NAME = SettingsScreenExample; 1303 | VERSIONING_SYSTEM = "apple-generic"; 1304 | HEADER_SEARCH_PATHS = ( 1305 | "$(inherited)", 1306 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1307 | ); 1308 | }; 1309 | name = Debug; 1310 | }; 1311 | 13B07F951A680F5B00A75B9A /* Release */ = { 1312 | isa = XCBuildConfiguration; 1313 | buildSettings = { 1314 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1315 | CURRENT_PROJECT_VERSION = 1; 1316 | INFOPLIST_FILE = SettingsScreenExample/Info.plist; 1317 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1318 | OTHER_LDFLAGS = ( 1319 | "$(inherited)", 1320 | "-ObjC", 1321 | "-lc++", 1322 | ); 1323 | PRODUCT_NAME = SettingsScreenExample; 1324 | VERSIONING_SYSTEM = "apple-generic"; 1325 | HEADER_SEARCH_PATHS = ( 1326 | "$(inherited)", 1327 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1328 | ); 1329 | }; 1330 | name = Release; 1331 | }; 1332 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1333 | isa = XCBuildConfiguration; 1334 | buildSettings = { 1335 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1336 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1337 | CLANG_ANALYZER_NONNULL = YES; 1338 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1339 | CLANG_WARN_INFINITE_RECURSION = YES; 1340 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1341 | DEBUG_INFORMATION_FORMAT = dwarf; 1342 | ENABLE_TESTABILITY = YES; 1343 | GCC_NO_COMMON_BLOCKS = YES; 1344 | INFOPLIST_FILE = "SettingsScreenExample-tvOS/Info.plist"; 1345 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1346 | OTHER_LDFLAGS = ( 1347 | "-ObjC", 1348 | "-lc++", 1349 | ); 1350 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SettingsScreenExample-tvOS"; 1351 | PRODUCT_NAME = "$(TARGET_NAME)"; 1352 | SDKROOT = appletvos; 1353 | TARGETED_DEVICE_FAMILY = 3; 1354 | TVOS_DEPLOYMENT_TARGET = 9.2; 1355 | LIBRARY_SEARCH_PATHS = ( 1356 | "$(inherited)", 1357 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1358 | ); 1359 | HEADER_SEARCH_PATHS = ( 1360 | "$(inherited)", 1361 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1362 | ); 1363 | }; 1364 | name = Debug; 1365 | }; 1366 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1367 | isa = XCBuildConfiguration; 1368 | buildSettings = { 1369 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1370 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1371 | CLANG_ANALYZER_NONNULL = YES; 1372 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1373 | CLANG_WARN_INFINITE_RECURSION = YES; 1374 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1375 | COPY_PHASE_STRIP = NO; 1376 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1377 | GCC_NO_COMMON_BLOCKS = YES; 1378 | INFOPLIST_FILE = "SettingsScreenExample-tvOS/Info.plist"; 1379 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1380 | OTHER_LDFLAGS = ( 1381 | "-ObjC", 1382 | "-lc++", 1383 | ); 1384 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SettingsScreenExample-tvOS"; 1385 | PRODUCT_NAME = "$(TARGET_NAME)"; 1386 | SDKROOT = appletvos; 1387 | TARGETED_DEVICE_FAMILY = 3; 1388 | TVOS_DEPLOYMENT_TARGET = 9.2; 1389 | LIBRARY_SEARCH_PATHS = ( 1390 | "$(inherited)", 1391 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1392 | ); 1393 | HEADER_SEARCH_PATHS = ( 1394 | "$(inherited)", 1395 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1396 | ); 1397 | }; 1398 | name = Release; 1399 | }; 1400 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1401 | isa = XCBuildConfiguration; 1402 | buildSettings = { 1403 | BUNDLE_LOADER = "$(TEST_HOST)"; 1404 | CLANG_ANALYZER_NONNULL = YES; 1405 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1406 | CLANG_WARN_INFINITE_RECURSION = YES; 1407 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1408 | DEBUG_INFORMATION_FORMAT = dwarf; 1409 | ENABLE_TESTABILITY = YES; 1410 | GCC_NO_COMMON_BLOCKS = YES; 1411 | INFOPLIST_FILE = "SettingsScreenExample-tvOSTests/Info.plist"; 1412 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1413 | OTHER_LDFLAGS = ( 1414 | "-ObjC", 1415 | "-lc++", 1416 | ); 1417 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SettingsScreenExample-tvOSTests"; 1418 | PRODUCT_NAME = "$(TARGET_NAME)"; 1419 | SDKROOT = appletvos; 1420 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SettingsScreenExample-tvOS.app/SettingsScreenExample-tvOS"; 1421 | TVOS_DEPLOYMENT_TARGET = 10.1; 1422 | LIBRARY_SEARCH_PATHS = ( 1423 | "$(inherited)", 1424 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1425 | ); 1426 | HEADER_SEARCH_PATHS = ( 1427 | "$(inherited)", 1428 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1429 | ); 1430 | }; 1431 | name = Debug; 1432 | }; 1433 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1434 | isa = XCBuildConfiguration; 1435 | buildSettings = { 1436 | BUNDLE_LOADER = "$(TEST_HOST)"; 1437 | CLANG_ANALYZER_NONNULL = YES; 1438 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1439 | CLANG_WARN_INFINITE_RECURSION = YES; 1440 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1441 | COPY_PHASE_STRIP = NO; 1442 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1443 | GCC_NO_COMMON_BLOCKS = YES; 1444 | INFOPLIST_FILE = "SettingsScreenExample-tvOSTests/Info.plist"; 1445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1446 | OTHER_LDFLAGS = ( 1447 | "-ObjC", 1448 | "-lc++", 1449 | ); 1450 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.SettingsScreenExample-tvOSTests"; 1451 | PRODUCT_NAME = "$(TARGET_NAME)"; 1452 | SDKROOT = appletvos; 1453 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SettingsScreenExample-tvOS.app/SettingsScreenExample-tvOS"; 1454 | TVOS_DEPLOYMENT_TARGET = 10.1; 1455 | LIBRARY_SEARCH_PATHS = ( 1456 | "$(inherited)", 1457 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1458 | ); 1459 | HEADER_SEARCH_PATHS = ( 1460 | "$(inherited)", 1461 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1462 | ); 1463 | }; 1464 | name = Release; 1465 | }; 1466 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1467 | isa = XCBuildConfiguration; 1468 | buildSettings = { 1469 | ALWAYS_SEARCH_USER_PATHS = NO; 1470 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1471 | CLANG_CXX_LIBRARY = "libc++"; 1472 | CLANG_ENABLE_MODULES = YES; 1473 | CLANG_ENABLE_OBJC_ARC = YES; 1474 | CLANG_WARN_BOOL_CONVERSION = YES; 1475 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1476 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1477 | CLANG_WARN_EMPTY_BODY = YES; 1478 | CLANG_WARN_ENUM_CONVERSION = YES; 1479 | CLANG_WARN_INT_CONVERSION = YES; 1480 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1481 | CLANG_WARN_UNREACHABLE_CODE = YES; 1482 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1483 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1484 | COPY_PHASE_STRIP = NO; 1485 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1486 | GCC_C_LANGUAGE_STANDARD = gnu99; 1487 | GCC_DYNAMIC_NO_PIC = NO; 1488 | GCC_OPTIMIZATION_LEVEL = 0; 1489 | GCC_PREPROCESSOR_DEFINITIONS = ( 1490 | "DEBUG=1", 1491 | "$(inherited)", 1492 | ); 1493 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1494 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1495 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1496 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1497 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1498 | GCC_WARN_UNUSED_FUNCTION = YES; 1499 | GCC_WARN_UNUSED_VARIABLE = YES; 1500 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1501 | MTL_ENABLE_DEBUG_INFO = YES; 1502 | ONLY_ACTIVE_ARCH = YES; 1503 | SDKROOT = iphoneos; 1504 | }; 1505 | name = Debug; 1506 | }; 1507 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1508 | isa = XCBuildConfiguration; 1509 | buildSettings = { 1510 | ALWAYS_SEARCH_USER_PATHS = NO; 1511 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1512 | CLANG_CXX_LIBRARY = "libc++"; 1513 | CLANG_ENABLE_MODULES = YES; 1514 | CLANG_ENABLE_OBJC_ARC = YES; 1515 | CLANG_WARN_BOOL_CONVERSION = YES; 1516 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1517 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1518 | CLANG_WARN_EMPTY_BODY = YES; 1519 | CLANG_WARN_ENUM_CONVERSION = YES; 1520 | CLANG_WARN_INT_CONVERSION = YES; 1521 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1522 | CLANG_WARN_UNREACHABLE_CODE = YES; 1523 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1524 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1525 | COPY_PHASE_STRIP = YES; 1526 | ENABLE_NS_ASSERTIONS = NO; 1527 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1528 | GCC_C_LANGUAGE_STANDARD = gnu99; 1529 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1530 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1531 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1532 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1533 | GCC_WARN_UNUSED_FUNCTION = YES; 1534 | GCC_WARN_UNUSED_VARIABLE = YES; 1535 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1536 | MTL_ENABLE_DEBUG_INFO = NO; 1537 | SDKROOT = iphoneos; 1538 | VALIDATE_PRODUCT = YES; 1539 | }; 1540 | name = Release; 1541 | }; 1542 | /* End XCBuildConfiguration section */ 1543 | 1544 | /* Begin XCConfigurationList section */ 1545 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SettingsScreenExampleTests" */ = { 1546 | isa = XCConfigurationList; 1547 | buildConfigurations = ( 1548 | 00E356F61AD99517003FC87E /* Debug */, 1549 | 00E356F71AD99517003FC87E /* Release */, 1550 | ); 1551 | defaultConfigurationIsVisible = 0; 1552 | defaultConfigurationName = Release; 1553 | }; 1554 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SettingsScreenExample" */ = { 1555 | isa = XCConfigurationList; 1556 | buildConfigurations = ( 1557 | 13B07F941A680F5B00A75B9A /* Debug */, 1558 | 13B07F951A680F5B00A75B9A /* Release */, 1559 | ); 1560 | defaultConfigurationIsVisible = 0; 1561 | defaultConfigurationName = Release; 1562 | }; 1563 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SettingsScreenExample-tvOS" */ = { 1564 | isa = XCConfigurationList; 1565 | buildConfigurations = ( 1566 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1567 | 2D02E4981E0B4A5E006451C7 /* Release */, 1568 | ); 1569 | defaultConfigurationIsVisible = 0; 1570 | defaultConfigurationName = Release; 1571 | }; 1572 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SettingsScreenExample-tvOSTests" */ = { 1573 | isa = XCConfigurationList; 1574 | buildConfigurations = ( 1575 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1576 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1577 | ); 1578 | defaultConfigurationIsVisible = 0; 1579 | defaultConfigurationName = Release; 1580 | }; 1581 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SettingsScreenExample" */ = { 1582 | isa = XCConfigurationList; 1583 | buildConfigurations = ( 1584 | 83CBBA201A601CBA00E9B192 /* Debug */, 1585 | 83CBBA211A601CBA00E9B192 /* Release */, 1586 | ); 1587 | defaultConfigurationIsVisible = 0; 1588 | defaultConfigurationName = Release; 1589 | }; 1590 | /* End XCConfigurationList section */ 1591 | }; 1592 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1593 | } 1594 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample.xcodeproj/xcshareddata/xcschemes/SettingsScreenExample-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 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample.xcodeproj/xcshareddata/xcschemes/SettingsScreenExample.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 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"SettingsScreenExample" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 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 | @end 36 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/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 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/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 | } -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | SettingsScreenExample 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 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExample/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExampleTests/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 | -------------------------------------------------------------------------------- /SettingsScreenExample/ios/SettingsScreenExampleTests/SettingsScreenExampleTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface SettingsScreenExampleTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation SettingsScreenExampleTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /SettingsScreenExample/jan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/SettingsScreenExample/jan.jpg -------------------------------------------------------------------------------- /SettingsScreenExample/lib/Chevron.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import { StyleSheet, Image, ImageStyle } from 'react-native' 3 | 4 | export interface ChevronProps { 5 | style?: ImageStyle 6 | } 7 | 8 | export const Chevron = ({ style }: ChevronProps) => ( 9 | 13 | ) 14 | 15 | const defaultStyles = StyleSheet.create({ 16 | chevron: { 17 | width: 12, 18 | height: 12, 19 | marginLeft: 8, 20 | marginRight: 10, 21 | opacity: 0.35, 22 | }, 23 | }) 24 | -------------------------------------------------------------------------------- /SettingsScreenExample/lib/Row.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import { StyleSheet, View, TouchableOpacity, TextStyle } from 'react-native' 3 | import styled from 'styled-components/native' 4 | 5 | import { Chevron } from './Chevron' 6 | 7 | export interface RowData { 8 | title: string 9 | titleStyle?: TextStyle 10 | subtitle?: string 11 | subtitleStyle?: TextStyle 12 | onPress?: () => void 13 | showDisclosureIndicator?: boolean 14 | renderAccessory?: () => React.ReactElement 15 | } 16 | 17 | export interface Props extends RowData { 18 | titleStyles?: (TextStyle | undefined)[] 19 | subtitleStyles?: (TextStyle | undefined)[] 20 | isFirst: boolean 21 | isLast: boolean 22 | children?: any 23 | } 24 | export const Row = ({ 25 | title, 26 | subtitle, 27 | onPress, 28 | showDisclosureIndicator, 29 | renderAccessory, 30 | 31 | titleStyles, 32 | subtitleStyles, 33 | isFirst, 34 | isLast, 35 | }: Props) => { 36 | let ContentContainer = onPress ? TouchableOpacity : View 37 | 38 | return ( 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | {title} 48 | 49 | {subtitle && ( 50 | 51 | {subtitle} 52 | 53 | )} 54 | 55 | 56 | {renderAccessory && renderAccessory()} 57 | {showDisclosureIndicator ? : } 58 | 59 | {isLast && } 60 | 61 | ) 62 | } 63 | 64 | const styles = StyleSheet.create({ 65 | contentContainer: { 66 | flexDirection: 'row', 67 | paddingLeft: 15, 68 | flex: 1, 69 | alignItems: 'center', 70 | backgroundColor: 'white', 71 | }, 72 | }) 73 | 74 | interface ContainerProps { 75 | height: number 76 | } 77 | const Container = styled.View` 78 | background-color: transparent; 79 | height: ${p => p.height}; 80 | align-items: stretch; 81 | ` 82 | 83 | interface TopBorderContainerProps { 84 | isFirst: boolean 85 | } 86 | const TopBorderContainer = styled.View` 87 | align-self: stretch; 88 | height: ${StyleSheet.hairlineWidth}; 89 | padding-left: ${p => (p.isFirst ? 0 : 15)}; 90 | background-color: white; 91 | ` 92 | 93 | const TopBorder = styled.View` 94 | flex: 1; 95 | background-color: #ccc; 96 | ` 97 | 98 | const TitlesContainer = styled.View` 99 | flex: 1; 100 | justify-content: space-around; 101 | align-self: stretch; 102 | ` 103 | 104 | const Title = styled.Text` 105 | color: black; 106 | font-size: 18; 107 | margin-right: 15; 108 | ` 109 | 110 | const Subtitle = styled.Text` 111 | color: #999; 112 | font-size: 15; 113 | margin-right: 15; 114 | ` 115 | 116 | const BottomBorder = styled.View` 117 | align-self: stretch; 118 | height: ${StyleSheet.hairlineWidth}; 119 | background-color: #ccc; 120 | ` 121 | -------------------------------------------------------------------------------- /SettingsScreenExample/lib/Section.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import { TextStyle } from 'react-native' 3 | import styled from 'styled-components/native' 4 | 5 | import { Row, RowData } from './Row' 6 | 7 | export interface SectionData { 8 | type: 'SECTION' 9 | key?: string 10 | header?: string 11 | footer?: string | (() => React.ReactElement) 12 | rows: RowData[] 13 | } 14 | 15 | export interface SectionProps { 16 | section: SectionData 17 | globalTextStyle?: TextStyle 18 | } 19 | 20 | export const Section = ({ section, globalTextStyle }: SectionProps) => { 21 | let elements: React.ReactElement[] = [] 22 | 23 | if (section.header) { 24 | elements.push( 25 | 26 | {section.header} 27 | , 28 | ) 29 | } 30 | 31 | for (let i = 0; i < section.rows.length; i++) { 32 | const rowData = section.rows[i] 33 | const isFirst = i === 0 34 | const isLast = i === section.rows.length - 1 35 | 36 | elements.push( 37 | , 45 | ) 46 | } 47 | 48 | if (typeof section.footer === 'string') { 49 | elements.push( 50 | 51 | {section.footer} 52 | , 53 | ) 54 | } else if (typeof section.footer === 'function') { 55 | if (!section.key) { 56 | throw new Error( 57 | `Sections with a render function passed as footer must have their key property set. (Offending section has header ${ 58 | section.header 59 | })`, 60 | ) 61 | } 62 | 63 | elements.push( 64 | 65 | {section.footer()} 66 | , 67 | ) 68 | } 69 | 70 | return {elements} 71 | } 72 | 73 | const SectionContainer = styled.View` 74 | align-items: stretch; 75 | margin-bottom: 40; 76 | ` 77 | 78 | const SectionHeader = styled.Text` 79 | margin-left: 20; 80 | margin-bottom: 8; 81 | color: #999; 82 | font-size: 14; 83 | ` 84 | 85 | const SectionFooter = styled.Text` 86 | margin-top: 8; 87 | font-size: 15; 88 | color: #999; 89 | margin-horizontal: 15; 90 | ` 91 | 92 | const RenderedSectionFooterContainer = styled.View` 93 | align-self: stretch; 94 | ` 95 | -------------------------------------------------------------------------------- /SettingsScreenExample/lib/SettingsScreen.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import { View, ViewStyle, TextStyle, ScrollViewProps } from 'react-native' 3 | import styled from 'styled-components/native' 4 | 5 | import { Section, SectionData } from './Section' 6 | 7 | export type SettingsData = SettingsDatum[] 8 | export type SettingsDatum = CustomViewData | SectionData 9 | 10 | export interface CustomViewData { 11 | type: 'CUSTOM_VIEW' 12 | key?: string 13 | render: () => React.ReactElement 14 | } 15 | 16 | export interface Props { 17 | style?: ViewStyle 18 | data: SettingsData 19 | globalTextStyle?: TextStyle 20 | scrollViewProps?: Partial 21 | } 22 | 23 | export class SettingsScreen extends React.Component { 24 | state = { refreshing: false } 25 | 26 | render() { 27 | const elements = this.props.data.map((item, i) => { 28 | switch (item.type) { 29 | case 'CUSTOM_VIEW': 30 | return {item.render()} 31 | case 'SECTION': 32 | return ( 33 |
38 | ) 39 | } 40 | }) 41 | 42 | const scrollViewProps: ScrollViewProps = { 43 | ...(this.props.scrollViewProps || {}), 44 | style: this.props.style, 45 | } 46 | 47 | return ( 48 | {elements} 49 | ) 50 | } 51 | } 52 | 53 | const SettingsScrollView = styled.ScrollView` 54 | flex: 1; 55 | align-self: stretch; 56 | background-color: hsl(0, 0%, 97%); 57 | ` 58 | -------------------------------------------------------------------------------- /SettingsScreenExample/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SettingsScreen' 2 | export { SectionData } from './Section' 3 | export { RowData } from './Row' 4 | export { Chevron } from './Chevron' 5 | -------------------------------------------------------------------------------- /SettingsScreenExample/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SettingsScreenExample", 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 | "build": "tsc --pretty", 9 | "watch": "tsc --pretty --watch" 10 | }, 11 | "dependencies": { 12 | "react": "16.4.1", 13 | "react-native": "0.56.0", 14 | "react-native-settings-screen": "file:..", 15 | "react-native-vector-icons": "^5.0.0" 16 | }, 17 | "devDependencies": { 18 | "babel-jest": "23.4.2", 19 | "babel-preset-react-native": "^5", 20 | "jest": "23.5.0", 21 | "react-test-renderer": "16.4.1", 22 | "typescript": "^3.0.1" 23 | }, 24 | "jest": { 25 | "preset": "react-native" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /SettingsScreenExample/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "noImplicitThis": true, 6 | "alwaysStrict": true, 7 | "strictNullChecks": true, 8 | "strictPropertyInitialization": true, 9 | "sourceMap": false, 10 | "jsx": "react-native", 11 | "outDir": "dist", 12 | "allowJs": true, 13 | "experimentalDecorators": true, 14 | "allowSyntheticDefaultImports": true, 15 | "lib": ["dom", "es7"], 16 | "skipLibCheck": true 17 | }, 18 | "include": ["App.tsx", "lib/*.tsx", "lib/*.ts"] 19 | } 20 | -------------------------------------------------------------------------------- /chevron3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/chevron3.png -------------------------------------------------------------------------------- /imgs/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/imgs/android.png -------------------------------------------------------------------------------- /imgs/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoendermann/react-native-settings-screen/ca9057e0837da1d290f8c5c8bc038529d0bb5210/imgs/ios.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-settings-screen", 3 | "version": "2.1.2", 4 | "license": "Apache-2.0", 5 | "main": "./dist/lib/index.js", 6 | "typings": "./dist/lib/index.d.ts", 7 | "scripts": { 8 | "build": "tsc --pretty", 9 | "watch": "tsc --watch --pretty", 10 | "prepare": "npm run build" 11 | }, 12 | "dependencies": { 13 | "styled-components": "^3.4.9" 14 | }, 15 | "devDependencies": { 16 | "@types/react-native": "^0.57.4", 17 | "typescript": "^3.1.1" 18 | }, 19 | "peerDependencies": { 20 | "react": "*", 21 | "react-native": "*" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "jsx": "react", 5 | "module": "commonjs", 6 | "declaration": true, 7 | "strict": true, 8 | "lib": ["es2015", "esnext.asynciterable"], 9 | "outDir": "./dist/lib", 10 | "skipLibCheck": true 11 | }, 12 | "include": [ 13 | "SettingsScreenExample/lib/**/*.ts", 14 | "SettingsScreenExample/lib/**/*.tsx" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/prop-types@*": 6 | version "15.5.6" 7 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.5.6.tgz#9c03d3fed70a8d517c191b7734da2879b50ca26c" 8 | 9 | "@types/react-native@^0.57.4": 10 | version "0.57.4" 11 | resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.57.4.tgz#20824c0ccc2701d81b91af015f96afae095024e5" 12 | dependencies: 13 | "@types/prop-types" "*" 14 | "@types/react" "*" 15 | 16 | "@types/react@*": 17 | version "16.4.16" 18 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.4.16.tgz#99f91b1200ae8c2062030402006d3b3c3a177043" 19 | dependencies: 20 | "@types/prop-types" "*" 21 | csstype "^2.2.0" 22 | 23 | asap@~2.0.3: 24 | version "2.0.6" 25 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 26 | 27 | base64-js@^1.0.2: 28 | version "1.3.0" 29 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 30 | 31 | buffer@^5.0.3: 32 | version "5.2.1" 33 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" 34 | dependencies: 35 | base64-js "^1.0.2" 36 | ieee754 "^1.1.4" 37 | 38 | core-js@^1.0.0: 39 | version "1.2.7" 40 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 41 | 42 | css-color-keywords@^1.0.0: 43 | version "1.0.0" 44 | resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" 45 | 46 | css-to-react-native@^2.0.3: 47 | version "2.2.2" 48 | resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-2.2.2.tgz#c077d0f7bf3e6c915a539e7325821c9dd01f9965" 49 | dependencies: 50 | css-color-keywords "^1.0.0" 51 | fbjs "^0.8.5" 52 | postcss-value-parser "^3.3.0" 53 | 54 | csstype@^2.2.0: 55 | version "2.5.7" 56 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.5.7.tgz#bf9235d5872141eccfb2d16d82993c6b149179ff" 57 | 58 | encoding@^0.1.11: 59 | version "0.1.12" 60 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 61 | dependencies: 62 | iconv-lite "~0.4.13" 63 | 64 | fbjs@^0.8.16, fbjs@^0.8.5: 65 | version "0.8.17" 66 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" 67 | dependencies: 68 | core-js "^1.0.0" 69 | isomorphic-fetch "^2.1.1" 70 | loose-envify "^1.0.0" 71 | object-assign "^4.1.0" 72 | promise "^7.1.1" 73 | setimmediate "^1.0.5" 74 | ua-parser-js "^0.7.18" 75 | 76 | has-flag@^1.0.0: 77 | version "1.0.0" 78 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 79 | 80 | hoist-non-react-statics@^2.5.0: 81 | version "2.5.5" 82 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" 83 | 84 | iconv-lite@~0.4.13: 85 | version "0.4.24" 86 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 87 | dependencies: 88 | safer-buffer ">= 2.1.2 < 3" 89 | 90 | ieee754@^1.1.4: 91 | version "1.1.12" 92 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" 93 | 94 | is-stream@^1.0.1: 95 | version "1.1.0" 96 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 97 | 98 | isomorphic-fetch@^2.1.1: 99 | version "2.2.1" 100 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 101 | dependencies: 102 | node-fetch "^1.0.1" 103 | whatwg-fetch ">=0.10.0" 104 | 105 | "js-tokens@^3.0.0 || ^4.0.0": 106 | version "4.0.0" 107 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 108 | 109 | loose-envify@^1.0.0, loose-envify@^1.3.1: 110 | version "1.4.0" 111 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 112 | dependencies: 113 | js-tokens "^3.0.0 || ^4.0.0" 114 | 115 | node-fetch@^1.0.1: 116 | version "1.7.3" 117 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 118 | dependencies: 119 | encoding "^0.1.11" 120 | is-stream "^1.0.1" 121 | 122 | object-assign@^4.1.0, object-assign@^4.1.1: 123 | version "4.1.1" 124 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 125 | 126 | postcss-value-parser@^3.3.0: 127 | version "3.3.0" 128 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 129 | 130 | promise@^7.1.1: 131 | version "7.3.1" 132 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 133 | dependencies: 134 | asap "~2.0.3" 135 | 136 | prop-types@^15.5.4: 137 | version "15.6.2" 138 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" 139 | dependencies: 140 | loose-envify "^1.3.1" 141 | object-assign "^4.1.1" 142 | 143 | react-is@^16.3.1: 144 | version "16.5.2" 145 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.5.2.tgz#e2a7b7c3f5d48062eb769fcb123505eb928722e3" 146 | 147 | "safer-buffer@>= 2.1.2 < 3": 148 | version "2.1.2" 149 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 150 | 151 | setimmediate@^1.0.5: 152 | version "1.0.5" 153 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 154 | 155 | styled-components@^3.4.9: 156 | version "3.4.9" 157 | resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-3.4.9.tgz#519abeb351b37be5b7de6a15ff9e4efeb9d772da" 158 | dependencies: 159 | buffer "^5.0.3" 160 | css-to-react-native "^2.0.3" 161 | fbjs "^0.8.16" 162 | hoist-non-react-statics "^2.5.0" 163 | prop-types "^15.5.4" 164 | react-is "^16.3.1" 165 | stylis "^3.5.0" 166 | stylis-rule-sheet "^0.0.10" 167 | supports-color "^3.2.3" 168 | 169 | stylis-rule-sheet@^0.0.10: 170 | version "0.0.10" 171 | resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" 172 | 173 | stylis@^3.5.0: 174 | version "3.5.3" 175 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.3.tgz#99fdc46afba6af4deff570825994181a5e6ce546" 176 | 177 | supports-color@^3.2.3: 178 | version "3.2.3" 179 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 180 | dependencies: 181 | has-flag "^1.0.0" 182 | 183 | typescript@^3.1.1: 184 | version "3.1.1" 185 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.1.tgz#3362ba9dd1e482ebb2355b02dfe8bcd19a2c7c96" 186 | 187 | ua-parser-js@^0.7.18: 188 | version "0.7.18" 189 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" 190 | 191 | whatwg-fetch@>=0.10.0: 192 | version "3.0.0" 193 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" 194 | --------------------------------------------------------------------------------