├── .watchmanconfig
├── .gitattributes
├── .prettierrc
├── .babelrc
├── app.json
├── images
├── logo.png
├── logo@2x.png
└── logo@3x.png
├── ios
├── VictoryNativeUIExplorer
│ ├── Images.xcassets
│ │ ├── Contents.json
│ │ ├── victory-v.imageset
│ │ │ ├── victory-v.pdf
│ │ │ └── Contents.json
│ │ ├── formidable.imageset
│ │ │ ├── formidable.pdf
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ ├── ItunesArtwork@2x.png
│ │ │ ├── Icon-App-20x20@2x.png
│ │ │ ├── Icon-App-20x20@3x.png
│ │ │ ├── Icon-App-29x29@2x.png
│ │ │ ├── Icon-App-29x29@3x.png
│ │ │ ├── Icon-App-40x40@2x.png
│ │ │ ├── Icon-App-40x40@3x.png
│ │ │ ├── Icon-App-60x60@2x.png
│ │ │ ├── Icon-App-60x60@3x.png
│ │ │ └── Contents.json
│ ├── AppDelegate.h
│ ├── main.m
│ ├── AppDelegate.m
│ ├── Info.plist
│ └── Base.lproj
│ │ └── LaunchScreen.xib
├── VictoryNativeUIExplorerTests
│ ├── Info.plist
│ └── VictoryNativeUIExplorerTests.m
└── VictoryNativeUIExplorer.xcodeproj
│ ├── xcshareddata
│ └── xcschemes
│ │ ├── VictoryNativeUIExplorer.xcscheme
│ │ └── VictoryNativeUIExplorer-tvOS.xcscheme
│ └── project.pbxproj
├── .buckconfig
├── android
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── keystores
│ ├── debug.keystore.properties
│ └── BUCK
├── app
│ ├── src
│ │ └── main
│ │ │ ├── res
│ │ │ ├── mipmap-hdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── values
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ ├── gen
│ │ │ └── com
│ │ │ │ └── victorynativeuiexplorer
│ │ │ │ ├── R.java
│ │ │ │ ├── Manifest.java
│ │ │ │ └── BuildConfig.java
│ │ │ ├── java
│ │ │ └── com
│ │ │ │ └── victorynativeuiexplorer
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── MainApplication.java
│ │ │ └── AndroidManifest.xml
│ ├── BUCK
│ ├── proguard-rules.pro
│ └── build.gradle
├── settings.gradle
├── gradle.properties
├── build.gradle
├── gradlew.bat
└── gradlew
├── .eslintrc
├── index.js
├── src
├── components
│ ├── title.js
│ ├── chart-controls.js
│ ├── chart-wrapper.js
│ ├── slider.js
│ ├── example.js
│ ├── victory-area-chart-wrapper.js
│ ├── toggle.js
│ ├── call-to-action.js
│ ├── checkbox.js
│ ├── example-list.js
│ ├── victory-candlestick-example.js
│ ├── segmented-control.js
│ ├── victory-area-example.js
│ ├── victory-bar-example.js
│ ├── victory-scatter-example.js
│ ├── victory-line-example.js
│ └── victory-pie-example.js
├── utils
│ ├── colors.js
│ ├── styles.js
│ ├── analytics.js
│ ├── examples.js
│ ├── props.js
│ └── data.js
└── victory-native-ui-explorer.js
├── .gitignore
├── package.json
├── .flowconfig
└── README.md
/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "trailingComma": "es5"
3 | }
4 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["react-native"]
3 | }
4 |
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "VictoryNativeUIExplorer",
3 | "displayName": "VictoryNativeUIExplorer"
4 | }
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/images/logo.png
--------------------------------------------------------------------------------
/images/logo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/images/logo@2x.png
--------------------------------------------------------------------------------
/images/logo@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/images/logo@3x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/android/keystores/debug.keystore.properties:
--------------------------------------------------------------------------------
1 | key.store=debug.keystore
2 | key.alias=androiddebugkey
3 | key.store.password=android
4 | key.alias.password=android
5 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/victory-v.imageset/victory-v.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/victory-v.imageset/victory-v.pdf
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/formidable.imageset/formidable.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/formidable.imageset/formidable.pdf
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FormidableLabs/victory-uiexplorer-native/HEAD/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/android/app/src/main/gen/com/victorynativeuiexplorer/R.java:
--------------------------------------------------------------------------------
1 | /*___Generated_by_IDEA___*/
2 |
3 | package com.victorynativeuiexplorer;
4 |
5 | /* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
6 | public final class R {
7 | }
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | tHILYCiMY18iPHezPUqGTHOmwuYANJ2oD-apW
3 |
4 | Victory UI
5 |
6 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/app/src/main/gen/com/victorynativeuiexplorer/Manifest.java:
--------------------------------------------------------------------------------
1 | /*___Generated_by_IDEA___*/
2 |
3 | package com.victorynativeuiexplorer;
4 |
5 | /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
6 | public final class Manifest {
7 | }
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Nov 08 08:36:27 CST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
7 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | "extends": "formidable/configurations/es6-react"
2 | "parser": "babel-eslint"
3 | "env":
4 | "browser": true
5 | "rules":
6 | "no-magic-numbers": 0
7 | "arrow-parens": 0
8 | "comma-dangle": [2, "always-multiline"]
9 | "no-use-before-define": 0
10 | "react/sort-comp": 0
11 |
--------------------------------------------------------------------------------
/android/app/src/main/gen/com/victorynativeuiexplorer/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /*___Generated_by_IDEA___*/
2 |
3 | package com.victorynativeuiexplorer;
4 |
5 | /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
6 | public final class BuildConfig {
7 | public final static boolean DEBUG = Boolean.parseBoolean(null);
8 | }
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/formidable.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "formidable.pdf"
6 | }
7 | ],
8 | "info" : {
9 | "version" : 1,
10 | "author" : "xcode"
11 | },
12 | "properties" : {
13 | "preserves-vector-representation" : true
14 | }
15 | }
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/victory-v.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "victory-v.pdf"
6 | }
7 | ],
8 | "info" : {
9 | "version" : 1,
10 | "author" : "xcode"
11 | },
12 | "properties" : {
13 | "preserves-vector-representation" : true
14 | }
15 | }
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import { AppRegistry } from "react-native";
2 | import codePush from "react-native-code-push";
3 | import VictoryNativeUIExplorer from "./src/victory-native-ui-explorer";
4 |
5 | const codePushOptions = {
6 | checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
7 | installMode: codePush.InstallMode.ON_NEXT_RESUME,
8 | };
9 |
10 | const App = codePush(codePushOptions)(VictoryNativeUIExplorer);
11 |
12 | AppRegistry.registerComponent("VictoryNativeUIExplorer", () => App);
13 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/victorynativeuiexplorer/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.victorynativeuiexplorer;
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 "VictoryNativeUIExplorer";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/AppDelegate.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | @interface AppDelegate : UIResponder
13 |
14 | @property (nonatomic, strong) UIWindow *window;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/main.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | #import "AppDelegate.h"
13 |
14 | int main(int argc, char * argv[]) {
15 | @autoreleasepool {
16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'VictoryNativeUIExplorer'
2 |
3 | include ':app'
4 | include ':react-native-google-analytics-bridge'
5 | project(':react-native-google-analytics-bridge').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-analytics-bridge/android')
6 | include ':react-native-code-push'
7 | project(':react-native-code-push').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-code-push/android/app')
8 | include ':react-native-svg'
9 | project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android')
10 |
--------------------------------------------------------------------------------
/src/components/title.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { StyleSheet, Text } from "react-native";
4 | import { colors } from "../utils/colors";
5 |
6 | const Title = ({ style, text }) => (
7 | {text}
8 | );
9 |
10 | const styles = StyleSheet.create({
11 | text: {
12 | backgroundColor: "transparent",
13 | color: colors.textColor,
14 | fontSize: 12,
15 | fontWeight: "600",
16 | letterSpacing: 0.2,
17 | },
18 | });
19 |
20 | Title.propTypes = {
21 | style: PropTypes.object,
22 | text: PropTypes.string,
23 | };
24 |
25 | export default Title;
26 |
--------------------------------------------------------------------------------
/src/components/chart-controls.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { ScrollView, StyleSheet } from "react-native";
4 |
5 | const ChartControls = ({ children }) => (
6 |
7 | {children}
8 |
9 | );
10 |
11 | const styles = StyleSheet.create({
12 | container: {
13 | paddingTop: 24,
14 | paddingRight: 12,
15 | paddingBottom: 24,
16 | paddingLeft: 12,
17 | },
18 | });
19 |
20 | ChartControls.propTypes = {
21 | children: PropTypes.oneOfType([
22 | PropTypes.arrayOf(PropTypes.object),
23 | PropTypes.object,
24 | ]),
25 | };
26 |
27 | export default ChartControls;
28 |
--------------------------------------------------------------------------------
/src/utils/colors.js:
--------------------------------------------------------------------------------
1 | const yellows = ["#EABE5B", "#F0CD7C", "#FBE7A0", "#FEF1C7"];
2 | const brights = ["#86D9E1", "#8183D6", "#E086CE", "#E18577"];
3 | const blueGrays = ["#7A8A90", "#90A1A9", "#AABBBF", "#CEDEDD"];
4 |
5 | export const colorScale = blueGrays;
6 | export const colorScales = [blueGrays, brights, yellows];
7 | export const colorScaleToggleValues = ["Blue Gray", "Bright", "Yellow"];
8 |
9 | export const solidColorToggleValues = ["Blue Gray", "Purple", "Pink", "Persimmon"];
10 | export const solidColors = [blueGrays[3], brights[1], brights[2], brights[3]];
11 |
12 | export const colors = {
13 | backgroundColor: "#FAFBFD",
14 | borderColor: "#EEEEEE",
15 | textColor: "#525D61",
16 | };
17 |
--------------------------------------------------------------------------------
/src/utils/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from "react-native";
2 | import { colors } from "./colors";
3 |
4 | export const styles = StyleSheet.create({
5 | container: {
6 | backgroundColor: colors.backgroundColor,
7 | flex: 1,
8 | },
9 | chartWrapper: {
10 | alignItems: "center",
11 | backgroundColor: "white",
12 | borderBottomColor: colors.borderColor,
13 | borderBottomWidth: StyleSheet.hairlineWidth,
14 | height: 300,
15 | },
16 | caret: {
17 | borderColor: "#AABBBF",
18 | borderRightWidth: 2,
19 | borderTopWidth: 2,
20 | height: 8,
21 | marginLeft: 7,
22 | transform: [{ rotate: "45deg" }],
23 | width: 8,
24 | },
25 | });
26 |
27 | export const minFontSize = 14;
28 |
--------------------------------------------------------------------------------
/src/components/chart-wrapper.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { View } from "react-native";
4 | import { shadowProps } from "../utils/props";
5 | import { styles } from "../utils/styles";
6 |
7 | const ChartWrapper = ({ children, dropShadow = false, ...otherProps }) => {
8 | let optionalProps = {};
9 | if (dropShadow) {
10 | optionalProps = shadowProps;
11 | }
12 |
13 | return (
14 |
19 | {children}
20 |
21 | );
22 | };
23 |
24 | ChartWrapper.propTypes = {
25 | children: PropTypes.element,
26 | dropShadow: PropTypes.bool,
27 | };
28 |
29 | export default ChartWrapper;
30 |
--------------------------------------------------------------------------------
/src/utils/analytics.js:
--------------------------------------------------------------------------------
1 | /*global __DEV__*/
2 |
3 | import GoogleAnalytics from "react-native-google-analytics-bridge";
4 |
5 | GoogleAnalytics.setTrackerId("UA-43290258-3");
6 |
7 | export const sendScreenView = function (screen) {
8 | try {
9 | if (!__DEV__) {
10 | GoogleAnalytics.trackScreenView(screen);
11 | }
12 | } catch (e) {
13 | //eslint-disable-next-line no-console
14 | console.error(`Failed to send analytics screen view ${screen}`, e);
15 | }
16 | };
17 |
18 | export const sendEvent = function (category, action) {
19 | try {
20 | if (!__DEV__) {
21 | GoogleAnalytics.trackEvent(category, action);
22 | }
23 | } catch (e) {
24 | //eslint-disable-next-line no-console
25 | console.error(`Failed to send analytics event ${category}/${action}`, e);
26 | }
27 | };
28 |
--------------------------------------------------------------------------------
/src/components/slider.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { Slider as RNSlider, View } from "react-native";
4 | import Title from "./title";
5 |
6 | const Slider = ({
7 | max = 100,
8 | min = 0,
9 | onChange = () => {},
10 | title,
11 | value = 0,
12 | }) => (
13 |
14 |
15 |
22 |
23 | );
24 |
25 | Slider.propTypes = {
26 | max: PropTypes.number,
27 | min: PropTypes.number,
28 | onChange: PropTypes.func,
29 | title: PropTypes.string,
30 | value: PropTypes.number,
31 | };
32 |
33 | export default Slider;
34 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorerTests/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/.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 | *.keystore
31 | local.properties
32 | *.iml
33 |
34 | # node.js
35 | #
36 | node_modules/
37 | npm-debug.log
38 | yarn-error.log
39 |
40 | # BUCK
41 | buck-out/
42 | \.buckd/
43 | *.keystore
44 |
45 | # fastlane
46 | #
47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
48 | # screenshots whenever they are needed.
49 | # For more information about the recommended setup visit:
50 | # https://docs.fastlane.tools/best-practices/source-control/
51 |
52 | */fastlane/report.xml
53 | */fastlane/Preview.html
54 | */fastlane/screenshots
55 | /.vscode
56 | /android/app/bin
57 | /android/app/.project
58 | /android/.project
59 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "victory-native-ui-explorer",
3 | "version": "1.2.0",
4 | "description":
5 | "A React Native app for iOS and Android that showcases Victory Native components",
6 | "author": "Angela Nicholas",
7 | "license": "MIT",
8 | "private": true,
9 | "scripts": {
10 | "lint": "eslint .",
11 | "start": "node node_modules/react-native/local-cli/cli.js start"
12 | },
13 | "dependencies": {
14 | "lodash": "4.17.5",
15 | "prop-types": "^15.6.0",
16 | "react": "16.2.0",
17 | "react-native": "0.53.0",
18 | "react-native-code-push": "^5.3.2",
19 | "react-native-google-analytics-bridge": "^5.3.3",
20 | "react-native-svg": "6.2.1",
21 | "react-navigation": "1.0.3",
22 | "victory-core": "21.0.4",
23 | "victory-native": "0.17.2"
24 | },
25 | "devDependencies": {
26 | "babel-eslint": "^7.0.0",
27 | "babel-preset-react-native": "4.0.0",
28 | "eslint": "^3.7.1",
29 | "eslint-config-formidable": "^2.0.1",
30 | "eslint-plugin-filenames": "^1.1.0",
31 | "eslint-plugin-import": "^2.0.0",
32 | "eslint-plugin-react": "^6.3.0"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/src/victory-native-ui-explorer.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { StatusBar, StyleSheet, View } from "react-native";
3 | import ExampleList from "./components/example-list";
4 | import { routes } from "./utils/examples";
5 | import { StackNavigator } from "react-navigation";
6 | import { colors } from "./utils/colors";
7 |
8 | const AppNavigator = StackNavigator({ // eslint-disable-line new-cap
9 | RootView: {
10 | screen: ExampleList,
11 | navigationOptions: { title: "Victory Native UIExplorer" },
12 | },
13 | ...routes,
14 | }, {
15 | initialRouteName: "RootView",
16 | navigationOptions: {
17 | headerPressColorAndroid: "#6b8cb1",
18 | headerTintColor: colors.textColor,
19 | },
20 | });
21 |
22 | class VictoryNativeUIExplorer extends Component {
23 | render() {
24 | return (
25 |
26 |
27 |
28 |
29 | );
30 | }
31 | }
32 |
33 | const styles = StyleSheet.create({
34 | container: {
35 | flex: 1,
36 | backgroundColor: "#fff",
37 | },
38 | });
39 |
40 | export default VictoryNativeUIExplorer;
41 |
--------------------------------------------------------------------------------
/src/components/example.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import ChartWrapper from "./chart-wrapper";
4 | import VictoryAreaChartWrapper from "./victory-area-chart-wrapper";
5 | import { defaultPropMap } from "../utils/props";
6 |
7 | const Example = ({ module: TargetComponent, selectedDatasetIndex = 0 }) => {
8 | const componentName = TargetComponent.displayName;
9 | const defaultProps = defaultPropMap[componentName];
10 | const { data, ...otherDefaultProps } = defaultProps;
11 | const customChartWrapper = customChartWrappers[componentName];
12 | const ComponentWrapper = customChartWrapper || ChartWrapper;
13 |
14 | return (
15 |
16 |
21 |
22 | );
23 | };
24 |
25 | const customChartWrappers = {
26 | VictoryArea: VictoryAreaChartWrapper,
27 | };
28 |
29 | Example.propTypes = {
30 | data: PropTypes.object,
31 | module: PropTypes.func,
32 | selectedDatasetIndex: PropTypes.number,
33 | };
34 |
35 | export default Example;
36 |
--------------------------------------------------------------------------------
/src/components/victory-area-chart-wrapper.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import PropTypes from "prop-types";
3 | import Svg, { Defs, LinearGradient, Stop } from "react-native-svg";
4 | import ChartWrapper from "./chart-wrapper";
5 | import { colorScale as defaultColorScale } from "../utils/colors";
6 |
7 | export default class VictoryAreaChartWrapper extends Component {
8 | static displayName = "VictoryAreaChartWrapper";
9 |
10 | static propTypes = {
11 | children: PropTypes.element,
12 | colorScale: PropTypes.arrayOf(PropTypes.string),
13 | };
14 |
15 | static defaultProps = {
16 | colorScale: defaultColorScale,
17 | };
18 |
19 | render() {
20 | const { children, colorScale, ...otherProps } = this.props;
21 |
22 | return (
23 |
24 |
33 |
34 | );
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/src/utils/examples.js:
--------------------------------------------------------------------------------
1 | import VictoryPieExample from "../components/victory-pie-example";
2 | import VictoryBarExample from "../components/victory-bar-example";
3 | import VictoryLineExample from "../components/victory-line-example";
4 | import VictoryAreaExample from "../components/victory-area-example";
5 | import VictoryScatterExample from "../components/victory-scatter-example";
6 | import VictoryCandlestickExample from "../components/victory-candlestick-example";
7 |
8 | const examples = [
9 | {
10 | component: VictoryPieExample,
11 | title: "",
12 | },
13 | {
14 | component: VictoryBarExample,
15 | title: "",
16 | },
17 | {
18 | component: VictoryLineExample,
19 | title: "",
20 | },
21 | {
22 | component: VictoryAreaExample,
23 | title: "",
24 | },
25 | {
26 | component: VictoryScatterExample,
27 | title: "",
28 | },
29 | {
30 | component: VictoryCandlestickExample,
31 | title: "",
32 | },
33 | ];
34 |
35 | const routes = examples.reduce((memo, { component, title }) => {
36 | memo[component.displayName] = {
37 | screen: component,
38 | navigationOptions: { title },
39 | };
40 | return memo;
41 | }, {});
42 |
43 | export { examples, routes };
44 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
12 |
13 |
19 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/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.2.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 | configurations.all {
22 | resolutionStrategy {
23 | force "com.google.android.gms:play-services-analytics:11.8.0"
24 | force "com.google.android.gms:play-services-auth:11.8.0"
25 | force "com.google.android.gms:play-services-gcm:11.8.0"
26 | force "com.google.android.gms:play-services-location:11.8.0"
27 | }
28 | }
29 |
30 | mavenLocal()
31 | jcenter()
32 | maven {
33 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
34 | url "$rootDir/../node_modules/react-native/android"
35 | }
36 | maven {
37 | url 'https://maven.google.com/'
38 | name 'Google'
39 | }
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/src/components/toggle.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { Platform, View, SegmentedControlIOS } from "react-native";
4 | import SegmentedControl from "./segmented-control";
5 | import Title from "./title";
6 | import { colorScale, colors } from "../utils/colors";
7 |
8 | // ideally we would use the cross-platform SegmentedControl
9 | // for iOS and Android, but because of an obscure border rendering
10 | // glitch on iOS, as a workaround let's use the compatible native
11 | // implementation. See:
12 | // https://github.com/FormidableLabs/victory-uiexplorer-native/issues/10
13 | // https://github.com/facebook/react-native/issues/6082
14 | const ToggleControl = Platform.OS === "ios"
15 | ? SegmentedControlIOS
16 | : SegmentedControl;
17 |
18 | const Toggle = ({
19 | onChange = () => {},
20 | selectedIndex,
21 | title,
22 | values = ["Dataset 1", "Dataset 2", "Dataset 3"],
23 | }) => (
24 |
25 |
26 |
34 |
35 | );
36 |
37 | Toggle.propTypes = {
38 | onChange: PropTypes.func,
39 | selectedIndex: PropTypes.number,
40 | title: PropTypes.string,
41 | values: PropTypes.array,
42 | };
43 |
44 | export default Toggle;
45 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@2x.png",
19 | "scale" : "2x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@3x.png",
25 | "scale" : "3x"
26 | },
27 | {
28 | "size" : "40x40",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-40x40@2x.png",
31 | "scale" : "2x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@3x.png",
37 | "scale" : "3x"
38 | },
39 | {
40 | "size" : "60x60",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-60x60@2x.png",
43 | "scale" : "2x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@3x.png",
49 | "scale" : "3x"
50 | },
51 | {
52 | "size" : "1024x1024",
53 | "idiom" : "ios-marketing",
54 | "filename" : "ItunesArtwork@2x.png",
55 | "scale" : "1x"
56 | }
57 | ],
58 | "info" : {
59 | "version" : 1,
60 | "author" : "xcode"
61 | }
62 | }
--------------------------------------------------------------------------------
/.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 | [include]
20 |
21 | [libs]
22 | node_modules/react-native/Libraries/react-native/react-native-interface.js
23 | node_modules/react-native/flow/
24 |
25 | [options]
26 | emoji=true
27 |
28 | module.system=haste
29 |
30 | munge_underscores=true
31 |
32 | 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'
33 |
34 | suppress_type=$FlowIssue
35 | suppress_type=$FlowFixMe
36 | suppress_type=$FlowFixMeProps
37 | suppress_type=$FlowFixMeState
38 | suppress_type=$FixMe
39 |
40 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
41 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
42 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
43 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
44 |
45 | unsafe.enable_getters_and_setters=true
46 |
47 | [version]
48 | ^0.56.0
49 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/AppDelegate.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import "AppDelegate.h"
11 |
12 | #import
13 | #import
14 | #import
15 |
16 | @implementation AppDelegate
17 |
18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
19 | {
20 | NSURL *jsCodeLocation;
21 |
22 | #ifdef DEBUG
23 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot: @"index"
24 | fallbackResource: nil];
25 | #else
26 | jsCodeLocation = [CodePush bundleURL];
27 | #endif
28 |
29 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL: jsCodeLocation
30 | moduleName: @"VictoryNativeUIExplorer"
31 | initialProperties: nil
32 | launchOptions: launchOptions];
33 | rootView.backgroundColor = [UIColor whiteColor];
34 | self.window = [[UIWindow alloc] initWithFrame: [UIScreen mainScreen].bounds];
35 | UIViewController *rootViewController = [UIViewController new];
36 | rootViewController.view = rootView;
37 | self.window.rootViewController = rootViewController;
38 | [self.window makeKeyAndVisible];
39 | return YES;
40 | }
41 |
42 | @end
43 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | VictoryUI
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.2
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 4
25 | CodePushDeploymentKey
26 | tHILYCiMY18iPHezPUqGTHOmwuYANJ2oD-apW
27 | LSRequiresIPhoneOS
28 |
29 | NSAppTransportSecurity
30 |
31 | NSExceptionDomains
32 |
33 | localhost
34 |
35 | NSExceptionAllowsInsecureHTTPLoads
36 |
37 |
38 |
39 |
40 | NSLocationWhenInUseUsageDescription
41 |
42 | UILaunchStoryboardName
43 | LaunchScreen
44 | UIRequiredDeviceCapabilities
45 |
46 | armv7
47 |
48 | UISupportedInterfaceOrientations
49 |
50 | UIInterfaceOrientationPortrait
51 |
52 | UIViewControllerBasedStatusBarAppearance
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/victorynativeuiexplorer/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.victorynativeuiexplorer;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.idehub.GoogleAnalyticsBridge.GoogleAnalyticsBridgePackage;
7 | import com.microsoft.codepush.react.CodePush;
8 | import com.horcrux.svg.SvgPackage;
9 | import com.facebook.react.ReactNativeHost;
10 | import com.facebook.react.ReactPackage;
11 | import com.facebook.react.shell.MainReactPackage;
12 | import com.facebook.soloader.SoLoader;
13 |
14 | import java.util.Arrays;
15 | import java.util.List;
16 |
17 | public class MainApplication extends Application implements ReactApplication {
18 |
19 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
20 |
21 | @Override
22 | protected String getJSBundleFile() {
23 | return CodePush.getJSBundleFile();
24 | }
25 |
26 | @Override
27 | public boolean getUseDeveloperSupport() {
28 | return BuildConfig.DEBUG;
29 | }
30 |
31 | @Override
32 | protected List getPackages() {
33 | return Arrays.asList(
34 | new MainReactPackage(),
35 | new GoogleAnalyticsBridgePackage(),
36 | new SvgPackage(),
37 | new CodePush(getResources().getString(
38 | R.string.reactNativeCodePush_androidDeploymentKey), getApplicationContext(), BuildConfig.DEBUG
39 | )
40 | );
41 | }
42 |
43 | @Override
44 | protected String getJSMainModuleName() {
45 | return "index";
46 | }
47 | };
48 |
49 | @Override
50 | public ReactNativeHost getReactNativeHost() {
51 | return mReactNativeHost;
52 | }
53 |
54 | @Override
55 | public void onCreate() {
56 | super.onCreate();
57 | SoLoader.init(this, /* native exopackage */ false);
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Victory Native UIExplorer
2 |
3 | Victory Native UIExplorer is a React Native app for iOS and Android that showcases Victory Native components. Each example has controls that toggle and animate between sample datasets and other configuration and style properties to give you a taste of what's possible in the Victory Native world of mobile data visualization. The API for Victory Native is identical to Victory, so you can do all the same stuff that you love in the browser on iOS or Android. For more information, check out the Victory docs: http://formidable.com/open-source/victory.
4 |
5 | 
6 |
7 | ## Release
8 |
9 | ### Android
10 |
11 | #### Setting up gradle variables (first time only)
12 |
13 | Get release keystore and password from Formidable password safe, and follow instructions from [Generating Signed APK](https://facebook.github.io/react-native/docs/signed-apk-android.html#setting-up-gradle-variables):
14 |
15 | 1. Place the `victory-uiexplorer.keystore` file under the `android/app` directory in your project folder.
16 | 2. Edit the file `~/.gradle/gradle.properties` and add the following (replace `*****` with the correct keystore password, alias and key password),
17 |
18 | ```
19 | VICTORY_UIEXPLORER_RELEASE_STORE_FILE=victory-uiexplorer.keystore
20 | VICTORY_UIEXPLORER_RELEASE_KEY_ALIAS=victory-uiexplorer
21 | VICTORY_UIEXPLORER_RELEASE_STORE_PASSWORD=*****
22 | VICTORY_UIEXPLORER_RELEASE_KEY_PASSWORD=*****
23 | ```
24 |
25 | #### Create release build
26 |
27 | ```
28 | cd android && ./gradlew assembleRelease
29 | ```
30 |
31 | #### Test release build locally
32 |
33 | 1. Ensure that your emulator is running or device is connected.
34 | 2. Remove development builds of the app from the device.
35 | 3. `react-native run-android --variant=release`
36 |
--------------------------------------------------------------------------------
/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.victorynativeuiexplorer",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.victorynativeuiexplorer",
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 |
--------------------------------------------------------------------------------
/src/utils/props.js:
--------------------------------------------------------------------------------
1 | import { datasets } from "./data";
2 | import { colorScale } from "./colors";
3 |
4 | const height = 300;
5 | const padding = 30;
6 |
7 | export const defaultDuration = { duration: 400, onLoad: { duration: 600 } };
8 |
9 | export const shadowProps = {
10 | elevation: 3,
11 | shadowColor: colorScale[0],
12 | shadowOffset: {
13 | width: 0,
14 | height: 3,
15 | },
16 | shadowOpacity: 0.1,
17 | shadowRadius: 8,
18 | };
19 |
20 | export const defaultPropMap = {
21 | VictoryPie: {
22 | colorScale,
23 | data: datasets.pie,
24 | endAngle: -180,
25 | height,
26 | padding,
27 | startAngle: 180,
28 | style: {
29 | parent: {
30 | alignSelf: "center",
31 | },
32 | labels: {
33 | fill: "none",
34 | stroke: "transparent",
35 | },
36 | },
37 | width: height,
38 | },
39 | VictoryBar: {
40 | data: datasets.bar,
41 | domain: { x: [0.75, 4.25] },
42 | height,
43 | padding,
44 | style: {
45 | data: {
46 | width: 40,
47 | },
48 | },
49 | },
50 | VictoryLine: {
51 | data: datasets.line,
52 | height,
53 | padding,
54 | style: {
55 | data: {
56 | stroke: colorScale[3],
57 | },
58 | },
59 | },
60 | VictoryArea: {
61 | data: datasets.area,
62 | height,
63 | padding,
64 | interpolation: "cardinal",
65 | style: {
66 | data: {
67 | fill: "url(#linear)",
68 | stroke: "transparent",
69 | },
70 | },
71 | },
72 | VictoryScatter: {
73 | data: datasets.scatter,
74 | size: 7,
75 | height,
76 | padding,
77 | },
78 | VictoryCandlestick: {
79 | data: datasets.candlestick,
80 | height,
81 | padding,
82 | style: {
83 | data: {
84 | fill: colorScale[3],
85 | stroke: colorScale[2],
86 | },
87 | labels: {
88 | fill: colorScale[2],
89 | fontSize: 14,
90 | padding: 6,
91 | },
92 | },
93 | },
94 | };
95 |
--------------------------------------------------------------------------------
/src/components/call-to-action.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import {
4 | TouchableOpacity,
5 | Text,
6 | View,
7 | Image,
8 | StyleSheet,
9 | Linking,
10 | Platform,
11 | } from "react-native";
12 | import { colorScale } from "../utils/colors";
13 | import { styles } from "../utils/styles";
14 | import { sendEvent } from "../utils/analytics";
15 |
16 | const createUrlHandler = (url) => () => {
17 | sendEvent("CallToAction", url);
18 | Linking.openURL(url);
19 | };
20 |
21 | const CallToAction = ({ text, url, style, rounded }) => (
22 |
23 |
27 | {text.toUpperCase()}
28 |
29 |
30 |
34 |
38 |
39 |
40 | );
41 |
42 | CallToAction.propTypes = {
43 | rounded: PropTypes.bool,
44 | style: PropTypes.oneOfType([
45 | PropTypes.number,
46 | PropTypes.object,
47 | PropTypes.array,
48 | ]),
49 | text: PropTypes.string.isRequired,
50 | url: PropTypes.string.isRequired,
51 | };
52 |
53 | const componentStyles = StyleSheet.create({
54 | touchable: {
55 | backgroundColor: colorScale[1],
56 | alignItems: "center",
57 | justifyContent: "center",
58 | flex: 1,
59 | flexDirection: "row",
60 | height: 40,
61 | },
62 | text: {
63 | color: "white",
64 | fontSize: 12,
65 | fontWeight: "600",
66 | letterSpacing: 0.2,
67 | },
68 | rounded: {
69 | borderRadius: Platform.OS === "ios" ? 5 : 0,
70 | },
71 | brandTouchable: {
72 | height: 40,
73 | alignItems: "center",
74 | margin: 10,
75 | padding: 10,
76 | },
77 | logo: {
78 | height: 40,
79 | width: 120,
80 | resizeMode: "contain",
81 | },
82 | });
83 |
84 | export default CallToAction;
85 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorerTests/VictoryNativeUIExplorerTests.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 | #import
12 |
13 | #import
14 | #import
15 |
16 | #define TIMEOUT_SECONDS 600
17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
18 |
19 | @interface VictoryNativeUIExplorerTests : XCTestCase
20 |
21 | @end
22 |
23 | @implementation VictoryNativeUIExplorerTests
24 |
25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
26 | {
27 | if (test(view)) {
28 | return YES;
29 | }
30 | for (UIView *subview in [view subviews]) {
31 | if ([self findSubviewInView:subview matching:test]) {
32 | return YES;
33 | }
34 | }
35 | return NO;
36 | }
37 |
38 | - (void)testRendersWelcomeScreen
39 | {
40 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
42 | BOOL foundElement = NO;
43 |
44 | __block NSString *redboxError = nil;
45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
46 | if (level >= RCTLogLevelError) {
47 | redboxError = message;
48 | }
49 | });
50 |
51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
54 |
55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
57 | return YES;
58 | }
59 | return NO;
60 | }];
61 | }
62 |
63 | RCTSetLogFunction(RCTDefaultLogFunction);
64 |
65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
67 | }
68 |
69 |
70 | @end
71 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/src/components/checkbox.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import PropTypes from "prop-types";
3 | import { StyleSheet, Text, View, TouchableHighlight } from "react-native";
4 | import Svg, { Polyline } from "react-native-svg";
5 | import { colors, colorScale } from "../utils/colors";
6 |
7 | export default class Checkbox extends Component {
8 | static propTypes = {
9 | checked: PropTypes.bool,
10 | defaultChecked: PropTypes.bool,
11 | label: PropTypes.string.isRequired,
12 | onChange: PropTypes.func,
13 | };
14 |
15 | static defaultProps = {
16 | defaultChecked: false,
17 | };
18 |
19 | constructor(props) {
20 | super(props);
21 | this.handleCheckboxChange = this.handleCheckboxChange.bind(this);
22 | this.state = {
23 | checked: props.checked || props.defaultChecked,
24 | };
25 | }
26 |
27 | componentWillReceiveProps(nextProps) {
28 | if (nextProps.checked !== this.props.checked) {
29 | this.setState({
30 | checked: nextProps.checked,
31 | });
32 | }
33 | }
34 |
35 | render() {
36 | return (
37 |
42 |
43 |
44 | {this.state.checked &&
45 |
54 | }
55 |
56 |
57 |
58 | {this.props.label}
59 |
60 |
61 |
62 |
63 | );
64 | }
65 |
66 | handleCheckboxChange(ev) {
67 | const { onChange } = this.props;
68 | this.setState({
69 | checked: !this.state.checked,
70 | });
71 | if (onChange) {
72 | onChange(ev);
73 | }
74 | }
75 | }
76 |
77 | const styles = StyleSheet.create({
78 | container: {
79 | flexDirection: "row",
80 | alignItems: "center",
81 | marginBottom: 20,
82 | },
83 | checkbox: {
84 | backgroundColor: "white",
85 | borderColor: colorScale[2],
86 | borderRadius: 3,
87 | borderWidth: 1.5,
88 | height: 22,
89 | paddingTop: 2.5,
90 | paddingLeft: 1.5,
91 | width: 22,
92 | },
93 | labelContainer: {
94 | marginLeft: 10,
95 | },
96 | label: {
97 | color: colors.textColor,
98 | fontSize: 12,
99 | fontWeight: "600",
100 | letterSpacing: 0.2,
101 | },
102 | });
103 |
--------------------------------------------------------------------------------
/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 |
19 | # Disabling obfuscation is useful if you collect stack traces from production crashes
20 | # (unless you are using a system that supports de-obfuscate the stack traces).
21 | -dontobfuscate
22 |
23 | # React Native
24 |
25 | # Keep our interfaces so they can be used by other ProGuard rules.
26 | # See http://sourceforge.net/p/proguard/bugs/466/
27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
30 |
31 | # Do not strip any method/class that is annotated with @DoNotStrip
32 | -keep @com.facebook.proguard.annotations.DoNotStrip class *
33 | -keep @com.facebook.common.internal.DoNotStrip class *
34 | -keepclassmembers class * {
35 | @com.facebook.proguard.annotations.DoNotStrip *;
36 | @com.facebook.common.internal.DoNotStrip *;
37 | }
38 |
39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
40 | void set*(***);
41 | *** get*();
42 | }
43 |
44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; }
46 | -keepclassmembers,includedescriptorclasses class * { native ; }
47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; }
48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; }
49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; }
50 |
51 | -dontwarn com.facebook.react.**
52 |
53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
55 | -dontwarn android.text.StaticLayout
56 |
57 | # okhttp
58 |
59 | -keepattributes Signature
60 | -keepattributes *Annotation*
61 | -keep class okhttp3.** { *; }
62 | -keep interface okhttp3.** { *; }
63 | -dontwarn okhttp3.**
64 |
65 | # okio
66 |
67 | -keep class sun.misc.Unsafe { *; }
68 | -dontwarn java.nio.file.*
69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
70 | -dontwarn okio.**
71 |
--------------------------------------------------------------------------------
/src/components/example-list.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { StyleSheet, TouchableOpacity, View, FlatList } from "react-native";
4 | import {
5 | VictoryPie,
6 | VictoryBar,
7 | VictoryArea,
8 | VictoryLine,
9 | VictoryScatter,
10 | VictoryCandlestick,
11 | } from "victory-native";
12 | import Example from "./example";
13 | import Title from "./title";
14 | import CallToAction from "./call-to-action";
15 | import { colors } from "../utils/colors";
16 | import { styles } from "../utils/styles";
17 | import { sendScreenView } from "../utils/analytics";
18 |
19 | const listData = [
20 | { key: "Pie Chart", component: VictoryPie },
21 | { key: "Bar Chart", component: VictoryBar },
22 | { key: "Line Chart", component: VictoryLine },
23 | { key: "Area Chart", component: VictoryArea },
24 | { key: "Scatter Chart", component: VictoryScatter },
25 | { key: "Candlestick Chart", component: VictoryCandlestick },
26 | ];
27 |
28 | export default class ExampleList extends React.Component {
29 | static propTypes = {
30 | navigation: PropTypes.object,
31 | };
32 |
33 | componentDidMount() {
34 | sendScreenView("Home");
35 | }
36 |
37 | render() {
38 | const { navigate } = this.props.navigation;
39 | return (
40 | (
43 |
48 | )}
49 | renderItem={({ item }) => (
50 | navigate(`${item.component.displayName}Example`)}
54 | >
55 |
56 |
57 |
58 |
59 |
63 | {React.createElement(Example, { module: item.component })}
64 |
65 |
66 | )}
67 | />
68 | );
69 | }
70 | }
71 |
72 | const exampleListStyles = StyleSheet.create({
73 | rowContainer: {
74 | marginTop: 32,
75 | },
76 | componentContainer: {
77 | alignItems: "center",
78 | backgroundColor: "white",
79 | justifyContent: "center",
80 | borderTopColor: colors.borderColor,
81 | borderTopWidth: StyleSheet.hairlineWidth,
82 | height: 300,
83 | position: "relative",
84 | },
85 | titleContainer: {
86 | alignItems: "center",
87 | flex: 1,
88 | flexDirection: "row",
89 | paddingLeft: 11,
90 | paddingBottom: 11,
91 | },
92 | callToAction: {
93 | marginLeft: 11,
94 | marginRight: 11,
95 | marginTop: 24,
96 | marginBottom: 15,
97 | },
98 | });
99 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/src/components/victory-candlestick-example.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { View } from "react-native";
3 | import { VictoryCandlestick } from "victory-native";
4 |
5 | import ChartControls from "./chart-controls";
6 | import ChartWrapper from "./chart-wrapper";
7 | import Toggle from "./toggle";
8 | import Checkbox from "./checkbox";
9 | import CallToAction from "./call-to-action";
10 |
11 | import { colorScales, colorScaleToggleValues } from "../utils/colors";
12 | import { dataLabels } from "../utils/data";
13 | import { defaultPropMap } from "../utils/props";
14 | import { styles, minFontSize } from "../utils/styles";
15 | import { sendScreenView } from "../utils/analytics";
16 |
17 | const defaultProps = defaultPropMap.VictoryCandlestick;
18 | const { data, style: defaultStyles, ...otherDefaultProps } = defaultProps;
19 |
20 | export default class VictoryCandlestickExample extends Component {
21 | static displayName = "VictoryCandlestickExample";
22 |
23 | constructor(props) {
24 | super(props);
25 |
26 | this.handleColorScaleChange = this.handleColorScaleChange.bind(this);
27 | this.handleDatasetChange = this.handleDatasetChange.bind(this);
28 | this.handleLabelsChange = this.handleLabelsChange.bind(this);
29 |
30 | this.state = {
31 | selectedColorScaleIndex: 0,
32 | selectedDatasetIndex: 0,
33 | showLabels: false,
34 | };
35 | }
36 |
37 | componentDidMount() {
38 | sendScreenView("Candlestick");
39 | }
40 |
41 | render() {
42 | const {
43 | selectedColorScaleIndex,
44 | selectedDatasetIndex,
45 | showLabels,
46 | } = this.state;
47 |
48 | const selectedColorScale = colorScales[selectedColorScaleIndex];
49 |
50 | return (
51 |
52 |
53 |
73 |
74 |
75 |
80 |
86 |
90 |
95 |
96 |
97 | );
98 | }
99 |
100 | handleColorScaleChange(ev) {
101 | this.setState({ selectedColorScaleIndex: ev.nativeEvent.selectedSegmentIndex });
102 | }
103 |
104 | handleDatasetChange(ev) {
105 | this.setState({ selectedDatasetIndex: ev.nativeEvent.selectedSegmentIndex });
106 | }
107 |
108 | handleLabelsChange() {
109 | this.setState({ showLabels: !this.state.showLabels });
110 | }
111 | }
112 |
--------------------------------------------------------------------------------
/src/components/segmented-control.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import PropTypes from "prop-types";
3 | import {
4 | View,
5 | Text,
6 | Platform,
7 | TouchableOpacity,
8 | StyleSheet,
9 | } from "react-native";
10 |
11 | /**
12 | * A SegmentedControlIOS-compatible, cross platform tab selection component
13 | */
14 | export default class SegmentedControl extends Component {
15 | static displayName = "SegmentedControl";
16 |
17 | static propTypes = {
18 | backgroundColor: PropTypes.string.isRequired,
19 | onChange: PropTypes.func.isRequired,
20 | selectedIndex: PropTypes.number.isRequired,
21 | style: PropTypes.oneOfType([
22 | PropTypes.number,
23 | PropTypes.object,
24 | PropTypes.array,
25 | ]),
26 | tintColor: PropTypes.string.isRequired,
27 | values: PropTypes.arrayOf(PropTypes.string).isRequired,
28 | };
29 |
30 | static defaultProps = {
31 | backgroundColor: "white",
32 | tintColor: "black",
33 | selectedIndex: 0,
34 | };
35 |
36 | renderOption(value, index) {
37 | const {
38 | tintColor,
39 | backgroundColor,
40 | selectedIndex,
41 | values,
42 | onChange,
43 | } = this.props;
44 | const isSelected = index === selectedIndex;
45 | const optionStyle = {
46 | borderColor: tintColor,
47 | backgroundColor: isSelected ? tintColor : backgroundColor,
48 | };
49 | const textColor = {
50 | color: isSelected ? backgroundColor : tintColor,
51 | };
52 |
53 | return (
54 | {
58 | // compatibile with SegmentedControlIOS.onChange event
59 | if (!isSelected) {
60 | onChange({ nativeEvent: { selectedSegmentIndex: index } });
61 | }
62 | }}
63 | style={[
64 | styles.option,
65 | index === 0 && styles.firstOption,
66 | index === (values.length - 1) && styles.lastOption,
67 | optionStyle,
68 | ]}
69 | >
70 |
76 | {value}
77 |
78 |
79 | );
80 | }
81 |
82 | render() {
83 | const { style, values } = this.props;
84 | return (
85 |
86 | {values.map(this.renderOption.bind(this))}
87 |
88 | );
89 | }
90 | }
91 |
92 | const BORDER_WIDTH = 1;
93 | const BORDER_RADIUS = 5;
94 | const styles = StyleSheet.create({
95 | container: {
96 | flex: 1,
97 | flexDirection: "row",
98 | height: 40,
99 | },
100 | option: {
101 | flex: 1,
102 | alignItems: "center",
103 | justifyContent: "center",
104 | borderTopWidth: BORDER_WIDTH,
105 | borderRightWidth: 0,
106 | borderBottomWidth: BORDER_WIDTH,
107 | borderLeftWidth: BORDER_WIDTH,
108 | // hack around iOS border collapse behaviour, leaves
109 | // a blank space where the right border ought to be
110 | ...Platform.select({
111 | ios: {
112 | position: "relative",
113 | right: 1,
114 | },
115 | }),
116 | },
117 | firstOption: {
118 | // rounded corners only for iOS
119 | ...Platform.select({
120 | ios: {
121 | borderTopLeftRadius: BORDER_RADIUS,
122 | borderBottomLeftRadius: BORDER_RADIUS,
123 | },
124 | }),
125 | },
126 | lastOption: {
127 | borderRightWidth: BORDER_WIDTH,
128 | // rounded corners only for iOS
129 | ...Platform.select({
130 | ios: {
131 | borderTopRightRadius: BORDER_RADIUS,
132 | borderBottomRightRadius: BORDER_RADIUS,
133 | },
134 | }),
135 | },
136 | });
137 |
--------------------------------------------------------------------------------
/src/components/victory-area-example.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { View } from "react-native";
3 | import { VictoryArea, VictoryGroup, VictoryScatter } from "victory-native";
4 |
5 | import VictoryAreaChartWrapper from "./victory-area-chart-wrapper";
6 | import ChartControls from "./chart-controls";
7 | import Toggle from "./toggle";
8 | import Checkbox from "./checkbox";
9 | import CallToAction from "./call-to-action";
10 |
11 | import { colorScales, colorScaleToggleValues } from "../utils/colors";
12 | import { dataLabels } from "../utils/data";
13 | import { defaultPropMap, defaultDuration } from "../utils/props";
14 | import { styles, minFontSize } from "../utils/styles";
15 | import { sendScreenView } from "../utils/analytics";
16 |
17 | const defaultProps = defaultPropMap.VictoryArea;
18 | const { data, interpolation, style, ...otherDefaultProps } = defaultProps;
19 |
20 | export default class VictoryAreaExample extends Component {
21 | static displayName = "VictoryAreaExample";
22 |
23 | constructor(props) {
24 | super(props);
25 |
26 | this.handleDataMarkerChange = this.handleDataMarkerChange.bind(this);
27 | this.handleDatasetChange = this.handleDatasetChange.bind(this);
28 | this.handleColorScaleChange = this.handleColorScaleChange.bind(this);
29 |
30 | this.state = {
31 | selectedColorScaleIndex: 0,
32 | selectedDatasetIndex: 0,
33 | showDataMarkers: false,
34 | };
35 | }
36 |
37 | componentDidMount() {
38 | sendScreenView("Area");
39 | }
40 |
41 | render() {
42 | const {
43 | selectedDatasetIndex,
44 | selectedColorScaleIndex,
45 | showDataMarkers,
46 | } = this.state;
47 |
48 | const selectedDataset = data[selectedDatasetIndex];
49 | const selectedColorScale = colorScales[selectedColorScaleIndex];
50 | const selectedFill = selectedColorScale[1];
51 |
52 | return (
53 |
54 |
55 |
61 |
62 | {showDataMarkers && (
63 |
77 | )}
78 |
79 |
80 |
81 |
86 |
92 |
96 |
101 |
102 |
103 | );
104 | }
105 |
106 | handleColorScaleChange(ev) {
107 | this.setState({
108 | selectedColorScaleIndex: ev.nativeEvent.selectedSegmentIndex,
109 | });
110 | }
111 |
112 | handleDatasetChange(ev) {
113 | this.setState({
114 | selectedDatasetIndex: ev.nativeEvent.selectedSegmentIndex,
115 | });
116 | }
117 |
118 | handleDataMarkerChange() {
119 | this.setState({ showDataMarkers: !this.state.showDataMarkers });
120 | }
121 | }
122 |
--------------------------------------------------------------------------------
/src/components/victory-bar-example.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { View } from "react-native";
3 | import { VictoryBar } from "victory-native";
4 | import { VictoryTransition } from "victory-core";
5 |
6 | import ChartControls from "./chart-controls";
7 | import ChartWrapper from "./chart-wrapper";
8 | import Toggle from "./toggle";
9 | import Slider from "./slider";
10 | import CallToAction from "./call-to-action";
11 |
12 | import { defaultPropMap } from "../utils/props";
13 | import { colorScales, colorScaleToggleValues } from "../utils/colors";
14 | import { styles } from "../utils/styles";
15 | import { sendScreenView } from "../utils/analytics";
16 |
17 | const orientationToggleValues = ["Vertical", "Horizontal"];
18 | const horizontalChartPadding = { top: 50, right: 80, bottom: 50, left: 80 };
19 | const defaultProps = defaultPropMap.VictoryBar;
20 | const { data, ...otherDefaultProps } = defaultProps;
21 | delete otherDefaultProps.style;
22 |
23 | export default class VictoryBarExample extends Component {
24 | static displayName = "VictoryBarExample";
25 |
26 | constructor(props) {
27 | super(props);
28 |
29 | this.handleColorScaleChange = this.handleColorScaleChange.bind(this);
30 | this.handleDatasetChange = this.handleDatasetChange.bind(this);
31 | this.handleOrientationChange = this.handleOrientationChange.bind(this);
32 | this.handleBarWidthChange = this.handleBarWidthChange.bind(this);
33 |
34 | this.state = {
35 | barWidth: 40,
36 | selectedColorScaleIndex: 0,
37 | selectedDatasetIndex: 0,
38 | selectedOrientationIndex: 0,
39 | };
40 | }
41 |
42 | componentDidMount() {
43 | sendScreenView("Bar");
44 | }
45 |
46 | render() {
47 | const {
48 | barWidth,
49 | selectedColorScaleIndex,
50 | selectedDatasetIndex,
51 | selectedOrientationIndex,
52 | } = this.state;
53 |
54 | const isHorizontal =
55 | orientationToggleValues[selectedOrientationIndex] === orientationToggleValues[1];
56 | const selectedColorScale = colorScales[selectedColorScaleIndex];
57 | const dataWithSelectedColors = data[selectedDatasetIndex].map((d, i) => {
58 | d.fill = selectedColorScale[i];
59 | return d;
60 | });
61 |
62 | return (
63 |
64 |
65 |
66 |
77 |
78 |
79 |
80 |
85 |
91 |
98 |
104 |
110 |
111 |
112 | );
113 | }
114 |
115 | handleColorScaleChange(ev) {
116 | this.setState({ selectedColorScaleIndex: ev.nativeEvent.selectedSegmentIndex });
117 | }
118 |
119 | handleDatasetChange(ev) {
120 | this.setState({ selectedDatasetIndex: ev.nativeEvent.selectedSegmentIndex });
121 | }
122 |
123 | handleOrientationChange(ev) {
124 | this.setState({ selectedOrientationIndex: ev.nativeEvent.selectedSegmentIndex });
125 | }
126 |
127 | handleBarWidthChange(barWidth) {
128 | this.setState({ barWidth });
129 | }
130 | }
131 |
--------------------------------------------------------------------------------
/src/components/victory-scatter-example.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { View } from "react-native";
3 | import { VictoryScatter } from "victory-native";
4 | import { VictoryTransition } from "victory-core";
5 | import _ from "lodash";
6 |
7 | import ChartControls from "./chart-controls";
8 | import ChartWrapper from "./chart-wrapper";
9 | import Toggle from "./toggle";
10 | import Slider from "./slider";
11 | import Checkbox from "./checkbox";
12 | import CallToAction from "./call-to-action";
13 |
14 | import { solidColors, solidColorToggleValues } from "../utils/colors";
15 | import { dataLabels } from "../utils/data";
16 | import { defaultPropMap } from "../utils/props";
17 | import { styles, minFontSize } from "../utils/styles";
18 | import { sendScreenView } from "../utils/analytics";
19 |
20 | const symbols = ["Circle", "Star", "Plus", "Diamond"];
21 | const defaultProps = defaultPropMap.VictoryScatter;
22 | const { data, ...otherDefaultProps } = defaultProps;
23 | const rawData = [0, 1, 2].map((i) => {
24 | return data[i].map((o) => _.omit(o, ["fill", "symbol"]));
25 | });
26 |
27 | export default class VictoryScatterExample extends Component {
28 | static displayName = "VictoryScatterExample";
29 |
30 | constructor(props) {
31 | super(props);
32 |
33 | this.handleDatasetChange = this.handleDatasetChange.bind(this);
34 | this.handleFillChange = this.handleFillChange.bind(this);
35 | this.handleLabelsChange = this.handleLabelsChange.bind(this);
36 | this.handleSizeChange = this.handleSizeChange.bind(this);
37 | this.handleSymbolChange = this.handleSymbolChange.bind(this);
38 |
39 | this.state = {
40 | selectedDatasetIndex: 0,
41 | selectedFillIndex: 0,
42 | selectedSymbolIndex: 0,
43 | showLabels: false,
44 | size: 7,
45 | };
46 | }
47 |
48 | componentDidMount() {
49 | sendScreenView("Scatter");
50 | }
51 |
52 | render() {
53 | const {
54 | selectedDatasetIndex,
55 | selectedFillIndex,
56 | selectedSymbolIndex,
57 | showLabels,
58 | size,
59 | } = this.state;
60 | const selectedFill = solidColors[selectedFillIndex];
61 |
62 | return (
63 |
64 |
65 |
66 |
87 |
88 |
89 |
90 |
95 |
101 |
107 |
114 |
118 |
123 |
124 |
125 | );
126 | }
127 |
128 | handleDatasetChange(ev) {
129 | this.setState({ selectedDatasetIndex: ev.nativeEvent.selectedSegmentIndex });
130 | }
131 |
132 | handleSizeChange(size) {
133 | this.setState({ size });
134 | }
135 |
136 | handleSymbolChange(ev) {
137 | this.setState({ selectedSymbolIndex: ev.nativeEvent.selectedSegmentIndex });
138 | }
139 |
140 | handleFillChange(ev) {
141 | this.setState({ selectedFillIndex: ev.nativeEvent.selectedSegmentIndex });
142 | }
143 |
144 | handleLabelsChange() {
145 | this.setState({ showLabels: !this.state.showLabels });
146 | }
147 | }
148 |
--------------------------------------------------------------------------------
/src/utils/data.js:
--------------------------------------------------------------------------------
1 | import { colorScale } from "./colors";
2 |
3 | export const dataLabels = ["a", "b", "c", "d", "e", "f", "g", "h"];
4 |
5 | export const datasets = {
6 | pie: {
7 | 0: [
8 | { x: "A", y: 55 },
9 | { x: "B", y: 55 },
10 | { x: "C", y: 45 },
11 | { x: "D", y: 65 },
12 | ],
13 | 1: [
14 | { x: "A", y: 25 },
15 | { x: "B", y: 50 },
16 | { x: "C", y: 75 },
17 | { x: "D", y: 100 },
18 | ],
19 | 2: [
20 | { x: "A", y: 40 },
21 | { x: "B", y: 20 },
22 | { x: "C", y: 210 },
23 | { x: "D", y: 30 },
24 | ],
25 | },
26 | bar: {
27 | 0: [
28 | { x: 1, y: 1, fill: colorScale[0] },
29 | { x: 2, y: 3, fill: colorScale[1] },
30 | { x: 3, y: 2, fill: colorScale[2] },
31 | { x: 4, y: 4, fill: colorScale[3] },
32 | ],
33 | 1: [
34 | { x: 1, y: 2, fill: colorScale[0] },
35 | { x: 2, y: 4, fill: colorScale[1] },
36 | { x: 3, y: 1, fill: colorScale[2] },
37 | { x: 4, y: 3, fill: colorScale[3] },
38 | ],
39 | 2: [
40 | { x: 1, y: 3, fill: colorScale[0] },
41 | { x: 2, y: 2, fill: colorScale[1] },
42 | { x: 3, y: 4, fill: colorScale[2] },
43 | { x: 4, y: 2, fill: colorScale[3] },
44 | ],
45 | },
46 | area: {
47 | 0: [
48 | { x: 1, y: 2 },
49 | { x: 2, y: 1.5 },
50 | { x: 3, y: 3 },
51 | { x: 4, y: 2.5 },
52 | { x: 5, y: 4 },
53 | ],
54 | 1: [
55 | { x: 1, y: 1 },
56 | { x: 2, y: 2 },
57 | { x: 3, y: 3.5 },
58 | { x: 4, y: 5.5 },
59 | { x: 5, y: 8 },
60 | ],
61 | 2: [
62 | { x: 1, y: 4 },
63 | { x: 2, y: 7 },
64 | { x: 3, y: 9 },
65 | { x: 4, y: 10 },
66 | { x: 5, y: 10.5 },
67 | ],
68 | },
69 | line: {
70 | 0: [
71 | { x: 0, y: 1 },
72 | { x: 1, y: 3 },
73 | { x: 2, y: 2 },
74 | { x: 3, y: 4 },
75 | { x: 4, y: 3 },
76 | { x: 5, y: 5 },
77 | { x: 6, y: 4 },
78 | { x: 7, y: 6 },
79 | ],
80 | 1: [
81 | { x: 0, y: 0 },
82 | { x: 1, y: 0.5 },
83 | { x: 2, y: 1.5 },
84 | { x: 3, y: 3 },
85 | { x: 4, y: 5 },
86 | { x: 5, y: 7.5 },
87 | { x: 6, y: 10.5 },
88 | { x: 7, y: 14 },
89 | ],
90 | 2: [
91 | { x: 0, y: Math.sin(0) },
92 | { x: 1, y: Math.sin(1) },
93 | { x: 2, y: Math.sin(2) },
94 | { x: 3, y: Math.sin(3) },
95 | { x: 4, y: Math.sin(4) },
96 | { x: 5, y: Math.sin(5) },
97 | { x: 6, y: Math.sin(6) },
98 | { x: 7, y: Math.sin(7) },
99 | ],
100 | },
101 | scatter: {
102 | 0: [
103 | { x: 1, y: 3, symbol: "triangleDown", fill: colorScale[0] },
104 | { x: 1.5, y: 2, symbol: "plus", fill: colorScale[1] },
105 | { x: 2, y: 4, symbol: "star", fill: colorScale[2] },
106 | { x: 2.5, y: 2.5, symbol: "square", fill: colorScale[3] },
107 | { x: 3, y: 3.5, symbol: "circle", fill: colorScale[0] },
108 | { x: 3.5, y: 1.5, symbol: "triangleUp", fill: colorScale[1] },
109 | { x: 4, y: 3, symbol: "diamond", fill: colorScale[2] },
110 | ],
111 | 1: [
112 | { x: 1, y: 1, symbol: "triangleDown", fill: colorScale[0] },
113 | { x: 1.5, y: 3, symbol: "plus", fill: colorScale[1] },
114 | { x: 2, y: 2, symbol: "star", fill: colorScale[2] },
115 | { x: 2.5, y: 2.5, symbol: "square", fill: colorScale[3] },
116 | { x: 3, y: 4, symbol: "circle", fill: colorScale[0] },
117 | { x: 3.5, y: 3, symbol: "triangleUp", fill: colorScale[1] },
118 | { x: 4, y: 5, symbol: "diamond", fill: colorScale[2] },
119 | ],
120 | 2: [
121 | { x: 1, y: 5, symbol: "triangleDown", fill: colorScale[0] },
122 | { x: 1.5, y: 3.5, symbol: "plus", fill: colorScale[1] },
123 | { x: 2, y: 4, symbol: "star", fill: colorScale[2] },
124 | { x: 2.5, y: 1.5, symbol: "square", fill: colorScale[3] },
125 | { x: 3, y: 2, symbol: "circle", fill: colorScale[0] },
126 | { x: 3.5, y: 2.5, symbol: "triangleUp", fill: colorScale[1] },
127 | { x: 4, y: 1, symbol: "diamond", fill: colorScale[2] },
128 | ],
129 | },
130 | candlestick: {
131 | 0: [
132 | { x: 1, open: 5, close: 10, high: 15, low: 0 },
133 | { x: 2, open: 15, close: 10, high: 20, low: 5 },
134 | { x: 3, open: 15, close: 20, high: 25, low: 10 },
135 | { x: 4, open: 20, close: 25, high: 30, low: 15 },
136 | { x: 5, open: 30, close: 25, high: 35, low: 20 },
137 | ],
138 | 1: [
139 | { x: 1, open: 10, close: 15, high: 20, low: 5 },
140 | { x: 2, open: 10, close: 5, high: 15, low: 0 },
141 | { x: 3, open: 25, close: 30, high: 35, low: 20 },
142 | { x: 4, open: 10, close: 15, high: 20, low: 5 },
143 | { x: 5, open: 20, close: 15, high: 25, low: 10 },
144 | ],
145 | 2: [
146 | { x: 1, open: 20, close: 25, high: 30, low: 0 },
147 | { x: 2, open: 40, close: 5, high: 60, low: -10 },
148 | { x: 3, open: 25, close: 45, high: 45, low: 10 },
149 | { x: 4, open: 5, close: 25, high: 40, low: 5 },
150 | { x: 5, open: 30, close: 15, high: 55, low: -5 },
151 | ],
152 | },
153 | };
154 |
--------------------------------------------------------------------------------
/src/components/victory-line-example.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { View } from "react-native";
3 | import { VictoryLine, VictoryGroup, VictoryScatter } from "victory-native";
4 |
5 | import ChartControls from "./chart-controls";
6 | import ChartWrapper from "./chart-wrapper";
7 | import Toggle from "./toggle";
8 | import Slider from "./slider";
9 | import Checkbox from "./checkbox";
10 | import CallToAction from "./call-to-action";
11 |
12 | import { solidColors, solidColorToggleValues } from "../utils/colors";
13 | import { dataLabels } from "../utils/data";
14 | import { defaultPropMap, defaultDuration } from "../utils/props";
15 | import { styles, minFontSize } from "../utils/styles";
16 | import { sendScreenView } from "../utils/analytics";
17 |
18 | const defaultProps = defaultPropMap.VictoryLine;
19 | const { data, ...otherDefaultProps } = defaultProps;
20 |
21 | export default class VictoryLineExample extends Component {
22 | static displayName = "VictoryLineExample";
23 |
24 | constructor(props) {
25 | super(props);
26 |
27 | this.handleDataMarkerChange = this.handleDataMarkerChange.bind(this);
28 | this.handleDatasetChange = this.handleDatasetChange.bind(this);
29 | this.handleLineLabelChange = this.handleLineLabelChange.bind(this);
30 | this.handleStrokeColorChange = this.handleStrokeColorChange.bind(this);
31 | this.handleStrokeWidthChange = this.handleStrokeWidthChange.bind(this);
32 |
33 | this.state = {
34 | selectedDatasetIndex: 0,
35 | selectedStrokeColorIndex: 0,
36 | showDataMarkers: false,
37 | strokeWidth: 2,
38 | };
39 | }
40 |
41 | componentDidMount() {
42 | sendScreenView("Line");
43 | }
44 |
45 | render() {
46 | const {
47 | selectedDatasetIndex,
48 | selectedStrokeColorIndex,
49 | showDataMarkers,
50 | strokeWidth,
51 | } = this.state;
52 |
53 | const selectedStrokeColor = solidColors[selectedStrokeColorIndex];
54 | const selectedDataset = data[selectedDatasetIndex];
55 | const size = Math.max(3, strokeWidth * 1.3);
56 |
57 | return (
58 |
59 |
60 |
61 |
75 | {showDataMarkers && (
76 |
93 | )}
94 |
95 |
96 |
97 |
102 |
108 |
115 |
119 |
124 |
125 |
126 | );
127 | }
128 |
129 | handleDatasetChange(ev) {
130 | this.setState({
131 | selectedDatasetIndex: ev.nativeEvent.selectedSegmentIndex,
132 | });
133 | }
134 |
135 | handleStrokeColorChange(ev) {
136 | this.setState({
137 | selectedStrokeColorIndex: ev.nativeEvent.selectedSegmentIndex,
138 | });
139 | }
140 |
141 | handleStrokeWidthChange(strokeWidth) {
142 | this.setState({ strokeWidth });
143 | }
144 |
145 | handleLineLabelChange() {
146 | this.setState({ showLineLabel: !this.state.showLineLabel });
147 | }
148 |
149 | handleDataMarkerChange() {
150 | this.setState({ showDataMarkers: !this.state.showDataMarkers });
151 | }
152 | }
153 |
--------------------------------------------------------------------------------
/src/components/victory-pie-example.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from "react";
2 | import { View } from "react-native";
3 | import { VictoryPie } from "victory-native";
4 | import { VictoryTransition } from "victory-core";
5 |
6 | import ChartControls from "./chart-controls";
7 | import ChartWrapper from "./chart-wrapper";
8 | import Toggle from "./toggle";
9 | import Slider from "./slider";
10 | import CallToAction from "./call-to-action";
11 |
12 | import { defaultPropMap, defaultDuration } from "../utils/props";
13 | import { colorScales, colorScaleToggleValues } from "../utils/colors";
14 | import { styles } from "../utils/styles";
15 | import { sendScreenView } from "../utils/analytics";
16 |
17 | const endAngles = ["-180", "-135", "-90"];
18 | const startAngles = ["180", "135", "90"];
19 | const animationWhitelist = ["colorScale", "data", "endAngle", "startAngle"];
20 | const defaultProps = defaultPropMap.VictoryPie;
21 | const { data, ...otherDefaultProps } = defaultProps;
22 |
23 | export default class VictoryPieExample extends Component {
24 | static displayName = "VictoryPieExample";
25 |
26 | constructor(props) {
27 | super(props);
28 |
29 | this.handleColorScaleChange = this.handleColorScaleChange.bind(this);
30 | this.handleDatasetChange = this.handleDatasetChange.bind(this);
31 | this.handleInnerRadiusChange = this.handleInnerRadiusChange.bind(this);
32 | this.handleEndAngleChange = this.handleEndAngleChange.bind(this);
33 | this.handlePadAngleChange = this.handlePadAngleChange.bind(this);
34 | this.handleStartAngleChange = this.handleStartAngleChange.bind(this);
35 |
36 | this.state = {
37 | innerRadius: 0,
38 | padAngle: 0,
39 | selectedColorScaleIndex: 0,
40 | selectedDatasetIndex: 0,
41 | selectedEndAngleIndex: 0,
42 | selectedStartAngleIndex: 0,
43 | };
44 | }
45 |
46 | componentDidMount() {
47 | sendScreenView("Pie");
48 | }
49 |
50 | render() {
51 | const {
52 | innerRadius,
53 | padAngle,
54 | selectedColorScaleIndex,
55 | selectedDatasetIndex,
56 | selectedEndAngleIndex,
57 | selectedStartAngleIndex,
58 | } = this.state;
59 |
60 | return (
61 |
62 |
63 |
64 |
74 |
75 |
76 |
77 |
82 |
88 |
93 |
100 |
106 |
112 |
118 |
119 |
120 | );
121 | }
122 |
123 | handleColorScaleChange(ev) {
124 | this.setState({
125 | selectedColorScaleIndex: ev.nativeEvent.selectedSegmentIndex,
126 | });
127 | }
128 |
129 | handleDatasetChange(ev) {
130 | this.setState({
131 | selectedDatasetIndex: ev.nativeEvent.selectedSegmentIndex,
132 | });
133 | }
134 |
135 | handleEndAngleChange(ev) {
136 | this.setState({
137 | selectedEndAngleIndex: ev.nativeEvent.selectedSegmentIndex,
138 | });
139 | }
140 |
141 | handleInnerRadiusChange(innerRadius) {
142 | this.setState({ innerRadius });
143 | }
144 |
145 | handlePadAngleChange(padAngle) {
146 | this.setState({ padAngle });
147 | }
148 |
149 | handleStartAngleChange(ev) {
150 | this.setState({
151 | selectedStartAngleIndex: ev.nativeEvent.selectedSegmentIndex,
152 | });
153 | }
154 | }
155 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer.xcodeproj/xcshareddata/xcschemes/VictoryNativeUIExplorer.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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer.xcodeproj/xcshareddata/xcschemes/VictoryNativeUIExplorer-tvOS.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
43 |
49 |
50 |
51 |
52 |
53 |
59 |
60 |
62 |
68 |
69 |
70 |
71 |
72 |
78 |
79 |
80 |
81 |
82 |
83 |
94 |
96 |
102 |
103 |
104 |
105 |
106 |
107 |
113 |
115 |
121 |
122 |
123 |
124 |
126 |
127 |
130 |
131 |
132 |
--------------------------------------------------------------------------------
/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 | apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"
81 |
82 | /**
83 | * Set this to true to create two separate APKs instead of one:
84 | * - An APK that only works on ARM devices
85 | * - An APK that only works on x86 devices
86 | * The advantage is the size of the APK is reduced by about 4MB.
87 | * Upload all the APKs to the Play Store and people will download
88 | * the correct one based on the CPU architecture of their device.
89 | */
90 | def enableSeparateBuildPerCPUArchitecture = false
91 |
92 | /**
93 | * Run Proguard to shrink the Java bytecode in release builds.
94 | */
95 | def enableProguardInReleaseBuilds = false
96 |
97 | android {
98 | compileSdkVersion 27
99 | buildToolsVersion '27.0.3'
100 |
101 | defaultConfig {
102 | applicationId "com.victorynativeuiexplorer"
103 | minSdkVersion 23
104 | targetSdkVersion 27
105 | versionCode 3
106 | versionName "1.2"
107 | ndk {
108 | abiFilters "armeabi-v7a", "x86"
109 | }
110 | }
111 | signingConfigs {
112 | release {
113 | // storeFile file(VICTORY_UIEXPLORER_RELEASE_STORE_FILE)
114 | // storePassword VICTORY_UIEXPLORER_RELEASE_STORE_PASSWORD
115 | // keyAlias VICTORY_UIEXPLORER_RELEASE_KEY_ALIAS
116 | // keyPassword VICTORY_UIEXPLORER_RELEASE_KEY_PASSWORD
117 | }
118 | }
119 | splits {
120 | abi {
121 | reset()
122 | enable enableSeparateBuildPerCPUArchitecture
123 | universalApk false // If true, also generate a universal APK
124 | include "armeabi-v7a", "x86"
125 | }
126 | }
127 | buildTypes {
128 | release {
129 | minifyEnabled enableProguardInReleaseBuilds
130 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
131 | signingConfig signingConfigs.release
132 | }
133 | }
134 | // applicationVariants are e.g. debug, release
135 | applicationVariants.all { variant ->
136 | variant.outputs.each { output ->
137 | // For each separate APK per architecture, set a unique version code as described here:
138 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
139 | def versionCodes = ["armeabi-v7a":1, "x86":2]
140 | def abi = output.getFilter(OutputFile.ABI)
141 | if (abi != null) { // null for the universal-debug, universal-release variants
142 | output.versionCodeOverride =
143 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
144 | }
145 | }
146 | }
147 | }
148 |
149 | dependencies {
150 | compile project(':react-native-google-analytics-bridge')
151 | compile project(':react-native-code-push')
152 | compile project(':react-native-svg')
153 | compile fileTree(dir: "libs", include: ["*.jar"])
154 | compile "com.android.support:appcompat-v7:27.1.0"
155 | compile "com.facebook.react:react-native:+" // From node_modules
156 | }
157 |
158 | // Run this once to be able to run the application with BUCK
159 | // puts all compile dependencies into folder libs for BUCK to use
160 | task copyDownloadableDepsToLibs(type: Copy) {
161 | from configurations.compile
162 | into 'libs'
163 | }
164 |
--------------------------------------------------------------------------------
/ios/VictoryNativeUIExplorer.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
15 | 00E356F31AD99517003FC87E /* VictoryNativeUIExplorerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* VictoryNativeUIExplorerTests.m */; };
16 | 07159EB9B2D14506BCC27E54 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = EB3D5EB4F4C6467D9BC0C60D /* libz.tbd */; };
17 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
18 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
19 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
20 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
21 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
22 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
23 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
24 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
26 | 2988E0BB1FB20BCC000C14B2 /* libCodePush.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 75EF04E01DA97D3A00495F01 /* libCodePush.a */; };
27 | 2988E0E51FB20F5B000C14B2 /* libRNSVG.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 75EF04ED1DA97D3A00495F01 /* libRNSVG.a */; };
28 | 2E2781C71DAFBD380027B0B7 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E2781C61DAFBD380027B0B7 /* CoreData.framework */; };
29 | 2E2781C91DAFBD450027B0B7 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E2781C81DAFBD450027B0B7 /* SystemConfiguration.framework */; };
30 | 2E2781CB1DAFBD580027B0B7 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E2781CA1DAFBD580027B0B7 /* libsqlite3.0.tbd */; };
31 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
32 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
33 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
34 | /* End PBXBuildFile section */
35 |
36 | /* Begin PBXContainerItemProxy section */
37 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
38 | isa = PBXContainerItemProxy;
39 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
40 | proxyType = 2;
41 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
42 | remoteInfo = RCTActionSheet;
43 | };
44 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
45 | isa = PBXContainerItemProxy;
46 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
47 | proxyType = 2;
48 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
49 | remoteInfo = RCTGeolocation;
50 | };
51 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
52 | isa = PBXContainerItemProxy;
53 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
54 | proxyType = 2;
55 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
56 | remoteInfo = RCTImage;
57 | };
58 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
59 | isa = PBXContainerItemProxy;
60 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
61 | proxyType = 2;
62 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
63 | remoteInfo = RCTNetwork;
64 | };
65 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
66 | isa = PBXContainerItemProxy;
67 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
68 | proxyType = 2;
69 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
70 | remoteInfo = RCTVibration;
71 | };
72 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
73 | isa = PBXContainerItemProxy;
74 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
75 | proxyType = 1;
76 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
77 | remoteInfo = VictoryNativeUIExplorer;
78 | };
79 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
80 | isa = PBXContainerItemProxy;
81 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
82 | proxyType = 2;
83 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
84 | remoteInfo = RCTSettings;
85 | };
86 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
87 | isa = PBXContainerItemProxy;
88 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
89 | proxyType = 2;
90 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
91 | remoteInfo = RCTWebSocket;
92 | };
93 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
94 | isa = PBXContainerItemProxy;
95 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
96 | proxyType = 2;
97 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
98 | remoteInfo = React;
99 | };
100 | 294405992064641A00548DBE /* PBXContainerItemProxy */ = {
101 | isa = PBXContainerItemProxy;
102 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
103 | proxyType = 2;
104 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
105 | remoteInfo = jsinspector;
106 | };
107 | 2944059B2064641A00548DBE /* PBXContainerItemProxy */ = {
108 | isa = PBXContainerItemProxy;
109 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
110 | proxyType = 2;
111 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
112 | remoteInfo = "jsinspector-tvOS";
113 | };
114 | 2988E0591FB20990000C14B2 /* PBXContainerItemProxy */ = {
115 | isa = PBXContainerItemProxy;
116 | containerPortal = BC80F1F5627544C8A75BA425 /* CodePush.xcodeproj */;
117 | proxyType = 2;
118 | remoteGlobalIDString = F886647B1F4ADB500036D01B;
119 | remoteInfo = "CodePush-tvOS";
120 | };
121 | 2988E05E1FB20990000C14B2 /* PBXContainerItemProxy */ = {
122 | isa = PBXContainerItemProxy;
123 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
124 | proxyType = 2;
125 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
126 | remoteInfo = "RCTAnimation-tvOS";
127 | };
128 | 2988E0621FB20990000C14B2 /* PBXContainerItemProxy */ = {
129 | isa = PBXContainerItemProxy;
130 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
131 | proxyType = 2;
132 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
133 | remoteInfo = "RCTBlob-tvOS";
134 | };
135 | 2988E0681FB20990000C14B2 /* PBXContainerItemProxy */ = {
136 | isa = PBXContainerItemProxy;
137 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
138 | proxyType = 2;
139 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
140 | remoteInfo = "RCTImage-tvOS";
141 | };
142 | 2988E06C1FB20990000C14B2 /* PBXContainerItemProxy */ = {
143 | isa = PBXContainerItemProxy;
144 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
145 | proxyType = 2;
146 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
147 | remoteInfo = "RCTLinking-tvOS";
148 | };
149 | 2988E0701FB20990000C14B2 /* PBXContainerItemProxy */ = {
150 | isa = PBXContainerItemProxy;
151 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
152 | proxyType = 2;
153 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
154 | remoteInfo = "RCTNetwork-tvOS";
155 | };
156 | 2988E0741FB20990000C14B2 /* PBXContainerItemProxy */ = {
157 | isa = PBXContainerItemProxy;
158 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
159 | proxyType = 2;
160 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
161 | remoteInfo = "RCTSettings-tvOS";
162 | };
163 | 2988E0781FB20990000C14B2 /* PBXContainerItemProxy */ = {
164 | isa = PBXContainerItemProxy;
165 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
166 | proxyType = 2;
167 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
168 | remoteInfo = "RCTText-tvOS";
169 | };
170 | 2988E07F1FB20990000C14B2 /* PBXContainerItemProxy */ = {
171 | isa = PBXContainerItemProxy;
172 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
173 | proxyType = 2;
174 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
175 | remoteInfo = "RCTWebSocket-tvOS";
176 | };
177 | 2988E0811FB20990000C14B2 /* PBXContainerItemProxy */ = {
178 | isa = PBXContainerItemProxy;
179 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
180 | proxyType = 2;
181 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
182 | remoteInfo = fishhook;
183 | };
184 | 2988E0831FB20990000C14B2 /* PBXContainerItemProxy */ = {
185 | isa = PBXContainerItemProxy;
186 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
187 | proxyType = 2;
188 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
189 | remoteInfo = "fishhook-tvOS";
190 | };
191 | 2988E0931FB20990000C14B2 /* PBXContainerItemProxy */ = {
192 | isa = PBXContainerItemProxy;
193 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
194 | proxyType = 2;
195 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
196 | remoteInfo = "React-tvOS";
197 | };
198 | 2988E0951FB20990000C14B2 /* PBXContainerItemProxy */ = {
199 | isa = PBXContainerItemProxy;
200 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
201 | proxyType = 2;
202 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
203 | remoteInfo = yoga;
204 | };
205 | 2988E0971FB20990000C14B2 /* PBXContainerItemProxy */ = {
206 | isa = PBXContainerItemProxy;
207 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
208 | proxyType = 2;
209 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
210 | remoteInfo = "yoga-tvOS";
211 | };
212 | 2988E0991FB20990000C14B2 /* PBXContainerItemProxy */ = {
213 | isa = PBXContainerItemProxy;
214 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
215 | proxyType = 2;
216 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
217 | remoteInfo = "cxxreact-tvOS";
218 | };
219 | 2988E09B1FB20990000C14B2 /* PBXContainerItemProxy */ = {
220 | isa = PBXContainerItemProxy;
221 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
222 | proxyType = 2;
223 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
224 | remoteInfo = "jschelpers-tvOS";
225 | };
226 | 2988E09D1FB20990000C14B2 /* PBXContainerItemProxy */ = {
227 | isa = PBXContainerItemProxy;
228 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
229 | proxyType = 2;
230 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
231 | remoteInfo = "third-party";
232 | };
233 | 2988E09F1FB20990000C14B2 /* PBXContainerItemProxy */ = {
234 | isa = PBXContainerItemProxy;
235 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
236 | proxyType = 2;
237 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
238 | remoteInfo = "third-party-tvOS";
239 | };
240 | 2988E0A11FB20990000C14B2 /* PBXContainerItemProxy */ = {
241 | isa = PBXContainerItemProxy;
242 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
243 | proxyType = 2;
244 | remoteGlobalIDString = 139D7E881E25C6D100323FB7;
245 | remoteInfo = "double-conversion";
246 | };
247 | 2988E0A31FB20990000C14B2 /* PBXContainerItemProxy */ = {
248 | isa = PBXContainerItemProxy;
249 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
250 | proxyType = 2;
251 | remoteGlobalIDString = 3D383D621EBD27B9005632C8;
252 | remoteInfo = "double-conversion-tvOS";
253 | };
254 | 2988E0A51FB20990000C14B2 /* PBXContainerItemProxy */ = {
255 | isa = PBXContainerItemProxy;
256 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
257 | proxyType = 2;
258 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
259 | remoteInfo = privatedata;
260 | };
261 | 2988E0A71FB20990000C14B2 /* PBXContainerItemProxy */ = {
262 | isa = PBXContainerItemProxy;
263 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
264 | proxyType = 2;
265 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
266 | remoteInfo = "privatedata-tvOS";
267 | };
268 | 2988E0E31FB20F5B000C14B2 /* PBXContainerItemProxy */ = {
269 | isa = PBXContainerItemProxy;
270 | containerPortal = 7BC31247EF404A96B8CAC4A4 /* RNSVG.xcodeproj */;
271 | proxyType = 2;
272 | remoteGlobalIDString = 2988E0E11FB20D61000C14B2;
273 | remoteInfo = "RNSVG-tvOS";
274 | };
275 | 2E2781BB1DAFBD130027B0B7 /* PBXContainerItemProxy */ = {
276 | isa = PBXContainerItemProxy;
277 | containerPortal = E5F4B046A71B4094B989654C /* RCTGoogleAnalyticsBridge.xcodeproj */;
278 | proxyType = 2;
279 | remoteGlobalIDString = A79185C61C30694E001236A6;
280 | remoteInfo = RCTGoogleAnalyticsBridge;
281 | };
282 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
283 | isa = PBXContainerItemProxy;
284 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
285 | proxyType = 2;
286 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
287 | remoteInfo = cxxreact;
288 | };
289 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
290 | isa = PBXContainerItemProxy;
291 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
292 | proxyType = 2;
293 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
294 | remoteInfo = jschelpers;
295 | };
296 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
297 | isa = PBXContainerItemProxy;
298 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
299 | proxyType = 2;
300 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
301 | remoteInfo = RCTAnimation;
302 | };
303 | 75EF04DF1DA97D3A00495F01 /* PBXContainerItemProxy */ = {
304 | isa = PBXContainerItemProxy;
305 | containerPortal = BC80F1F5627544C8A75BA425 /* CodePush.xcodeproj */;
306 | proxyType = 2;
307 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
308 | remoteInfo = CodePush;
309 | };
310 | 75EF04EC1DA97D3A00495F01 /* PBXContainerItemProxy */ = {
311 | isa = PBXContainerItemProxy;
312 | containerPortal = 7BC31247EF404A96B8CAC4A4 /* RNSVG.xcodeproj */;
313 | proxyType = 2;
314 | remoteGlobalIDString = 0CF68AC11AF0540F00FF9E5C;
315 | remoteInfo = RNSVG;
316 | };
317 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
318 | isa = PBXContainerItemProxy;
319 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
320 | proxyType = 2;
321 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
322 | remoteInfo = RCTLinking;
323 | };
324 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
325 | isa = PBXContainerItemProxy;
326 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
327 | proxyType = 2;
328 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
329 | remoteInfo = RCTText;
330 | };
331 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
332 | isa = PBXContainerItemProxy;
333 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
334 | proxyType = 2;
335 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
336 | remoteInfo = RCTBlob;
337 | };
338 | /* End PBXContainerItemProxy section */
339 |
340 | /* Begin PBXFileReference section */
341 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
342 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
343 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
344 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
345 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
346 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
347 | 00E356EE1AD99517003FC87E /* VictoryNativeUIExplorerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VictoryNativeUIExplorerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
348 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
349 | 00E356F21AD99517003FC87E /* VictoryNativeUIExplorerTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VictoryNativeUIExplorerTests.m; sourceTree = ""; };
350 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
351 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
352 | 13B07F961A680F5B00A75B9A /* VictoryNativeUIExplorer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VictoryNativeUIExplorer.app; sourceTree = BUILT_PRODUCTS_DIR; };
353 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = VictoryNativeUIExplorer/AppDelegate.h; sourceTree = ""; };
354 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = VictoryNativeUIExplorer/AppDelegate.m; sourceTree = ""; };
355 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
356 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = VictoryNativeUIExplorer/Images.xcassets; sourceTree = ""; };
357 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = VictoryNativeUIExplorer/Info.plist; sourceTree = ""; };
358 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = VictoryNativeUIExplorer/main.m; sourceTree = ""; };
359 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
360 | 2E2781C61DAFBD380027B0B7 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
361 | 2E2781C81DAFBD450027B0B7 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
362 | 2E2781CA1DAFBD580027B0B7 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
363 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
364 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
365 | 7BC31247EF404A96B8CAC4A4 /* RNSVG.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSVG.xcodeproj; path = "../node_modules/react-native-svg/ios/RNSVG.xcodeproj"; sourceTree = ""; };
366 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
367 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
368 | BC80F1F5627544C8A75BA425 /* CodePush.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = CodePush.xcodeproj; path = "../node_modules/react-native-code-push/ios/CodePush.xcodeproj"; sourceTree = ""; };
369 | E5F4B046A71B4094B989654C /* RCTGoogleAnalyticsBridge.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTGoogleAnalyticsBridge.xcodeproj; path = "../node_modules/react-native-google-analytics-bridge/ios/RCTGoogleAnalyticsBridge/RCTGoogleAnalyticsBridge.xcodeproj"; sourceTree = ""; };
370 | EB3D5EB4F4C6467D9BC0C60D /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
371 | /* End PBXFileReference section */
372 |
373 | /* Begin PBXFrameworksBuildPhase section */
374 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
375 | isa = PBXFrameworksBuildPhase;
376 | buildActionMask = 2147483647;
377 | files = (
378 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
379 | );
380 | runOnlyForDeploymentPostprocessing = 0;
381 | };
382 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
383 | isa = PBXFrameworksBuildPhase;
384 | buildActionMask = 2147483647;
385 | files = (
386 | 2988E0E51FB20F5B000C14B2 /* libRNSVG.a in Frameworks */,
387 | 2988E0BB1FB20BCC000C14B2 /* libCodePush.a in Frameworks */,
388 | 2E2781CB1DAFBD580027B0B7 /* libsqlite3.0.tbd in Frameworks */,
389 | 07159EB9B2D14506BCC27E54 /* libz.tbd in Frameworks */,
390 | 2E2781C91DAFBD450027B0B7 /* SystemConfiguration.framework in Frameworks */,
391 | 2E2781C71DAFBD380027B0B7 /* CoreData.framework in Frameworks */,
392 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
393 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
394 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
395 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
396 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
397 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
398 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
399 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
400 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
401 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
402 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
403 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
404 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
405 | );
406 | runOnlyForDeploymentPostprocessing = 0;
407 | };
408 | /* End PBXFrameworksBuildPhase section */
409 |
410 | /* Begin PBXGroup section */
411 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
412 | isa = PBXGroup;
413 | children = (
414 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
415 | );
416 | name = Products;
417 | sourceTree = "";
418 | };
419 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
420 | isa = PBXGroup;
421 | children = (
422 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
423 | );
424 | name = Products;
425 | sourceTree = "";
426 | };
427 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
428 | isa = PBXGroup;
429 | children = (
430 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
431 | 2988E0691FB20990000C14B2 /* libRCTImage-tvOS.a */,
432 | );
433 | name = Products;
434 | sourceTree = "";
435 | };
436 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
437 | isa = PBXGroup;
438 | children = (
439 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
440 | 2988E0711FB20990000C14B2 /* libRCTNetwork-tvOS.a */,
441 | );
442 | name = Products;
443 | sourceTree = "";
444 | };
445 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
446 | isa = PBXGroup;
447 | children = (
448 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
449 | );
450 | name = Products;
451 | sourceTree = "";
452 | };
453 | 00E356EF1AD99517003FC87E /* VictoryNativeUIExplorerTests */ = {
454 | isa = PBXGroup;
455 | children = (
456 | 00E356F21AD99517003FC87E /* VictoryNativeUIExplorerTests.m */,
457 | 00E356F01AD99517003FC87E /* Supporting Files */,
458 | );
459 | path = VictoryNativeUIExplorerTests;
460 | sourceTree = "";
461 | };
462 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
463 | isa = PBXGroup;
464 | children = (
465 | 00E356F11AD99517003FC87E /* Info.plist */,
466 | );
467 | name = "Supporting Files";
468 | sourceTree = "";
469 | };
470 | 139105B71AF99BAD00B5F7CC /* Products */ = {
471 | isa = PBXGroup;
472 | children = (
473 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
474 | 2988E0751FB20990000C14B2 /* libRCTSettings-tvOS.a */,
475 | );
476 | name = Products;
477 | sourceTree = "";
478 | };
479 | 139FDEE71B06529A00C62182 /* Products */ = {
480 | isa = PBXGroup;
481 | children = (
482 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
483 | 2988E0801FB20990000C14B2 /* libRCTWebSocket-tvOS.a */,
484 | 2988E0821FB20990000C14B2 /* libfishhook.a */,
485 | 2988E0841FB20990000C14B2 /* libfishhook-tvOS.a */,
486 | );
487 | name = Products;
488 | sourceTree = "";
489 | };
490 | 13B07FAE1A68108700A75B9A /* VictoryNativeUIExplorer */ = {
491 | isa = PBXGroup;
492 | children = (
493 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
494 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
495 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
496 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
497 | 13B07FB61A68108700A75B9A /* Info.plist */,
498 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
499 | 13B07FB71A68108700A75B9A /* main.m */,
500 | );
501 | name = VictoryNativeUIExplorer;
502 | sourceTree = "";
503 | };
504 | 146834001AC3E56700842450 /* Products */ = {
505 | isa = PBXGroup;
506 | children = (
507 | 146834041AC3E56700842450 /* libReact.a */,
508 | 2988E0941FB20990000C14B2 /* libReact.a */,
509 | 2988E0961FB20990000C14B2 /* libyoga.a */,
510 | 2988E0981FB20990000C14B2 /* libyoga.a */,
511 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
512 | 2988E09A1FB20990000C14B2 /* libcxxreact.a */,
513 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
514 | 2988E09C1FB20990000C14B2 /* libjschelpers.a */,
515 | 2944059A2064641A00548DBE /* libjsinspector.a */,
516 | 2944059C2064641A00548DBE /* libjsinspector-tvOS.a */,
517 | 2988E09E1FB20990000C14B2 /* libthird-party.a */,
518 | 2988E0A01FB20990000C14B2 /* libthird-party.a */,
519 | 2988E0A21FB20990000C14B2 /* libdouble-conversion.a */,
520 | 2988E0A41FB20990000C14B2 /* libdouble-conversion.a */,
521 | 2988E0A61FB20990000C14B2 /* libprivatedata.a */,
522 | 2988E0A81FB20990000C14B2 /* libprivatedata-tvOS.a */,
523 | );
524 | name = Products;
525 | sourceTree = "";
526 | };
527 | 2E2781B51DAFBD130027B0B7 /* Products */ = {
528 | isa = PBXGroup;
529 | children = (
530 | 2E2781BC1DAFBD130027B0B7 /* libRCTGoogleAnalyticsBridge.a */,
531 | );
532 | name = Products;
533 | sourceTree = "";
534 | };
535 | 51666422A8E64961B1695BB9 /* Frameworks */ = {
536 | isa = PBXGroup;
537 | children = (
538 | 2E2781CA1DAFBD580027B0B7 /* libsqlite3.0.tbd */,
539 | 2E2781C81DAFBD450027B0B7 /* SystemConfiguration.framework */,
540 | 2E2781C61DAFBD380027B0B7 /* CoreData.framework */,
541 | EB3D5EB4F4C6467D9BC0C60D /* libz.tbd */,
542 | );
543 | name = Frameworks;
544 | sourceTree = "";
545 | };
546 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
547 | isa = PBXGroup;
548 | children = (
549 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
550 | 2988E05F1FB20990000C14B2 /* libRCTAnimation.a */,
551 | );
552 | name = Products;
553 | sourceTree = "";
554 | };
555 | 75EF04DA1DA97D3900495F01 /* Products */ = {
556 | isa = PBXGroup;
557 | children = (
558 | 75EF04E01DA97D3A00495F01 /* libCodePush.a */,
559 | 2988E05A1FB20990000C14B2 /* libCodePush.a */,
560 | );
561 | name = Products;
562 | sourceTree = "";
563 | };
564 | 75EF04DC1DA97D3900495F01 /* Products */ = {
565 | isa = PBXGroup;
566 | children = (
567 | 75EF04ED1DA97D3A00495F01 /* libRNSVG.a */,
568 | 2988E0E41FB20F5B000C14B2 /* libRNSVG-tvOS.a */,
569 | );
570 | name = Products;
571 | sourceTree = "";
572 | };
573 | 78C398B11ACF4ADC00677621 /* Products */ = {
574 | isa = PBXGroup;
575 | children = (
576 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
577 | 2988E06D1FB20990000C14B2 /* libRCTLinking-tvOS.a */,
578 | );
579 | name = Products;
580 | sourceTree = "";
581 | };
582 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
583 | isa = PBXGroup;
584 | children = (
585 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
586 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
587 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
588 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
589 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
590 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
591 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
592 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
593 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
594 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
595 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
596 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
597 | 7BC31247EF404A96B8CAC4A4 /* RNSVG.xcodeproj */,
598 | BC80F1F5627544C8A75BA425 /* CodePush.xcodeproj */,
599 | E5F4B046A71B4094B989654C /* RCTGoogleAnalyticsBridge.xcodeproj */,
600 | );
601 | name = Libraries;
602 | sourceTree = "";
603 | };
604 | 832341B11AAA6A8300B99B32 /* Products */ = {
605 | isa = PBXGroup;
606 | children = (
607 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
608 | 2988E0791FB20990000C14B2 /* libRCTText-tvOS.a */,
609 | );
610 | name = Products;
611 | sourceTree = "";
612 | };
613 | 83CBB9F61A601CBA00E9B192 = {
614 | isa = PBXGroup;
615 | children = (
616 | 13B07FAE1A68108700A75B9A /* VictoryNativeUIExplorer */,
617 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
618 | 00E356EF1AD99517003FC87E /* VictoryNativeUIExplorerTests */,
619 | 83CBBA001A601CBA00E9B192 /* Products */,
620 | 51666422A8E64961B1695BB9 /* Frameworks */,
621 | );
622 | indentWidth = 2;
623 | sourceTree = "";
624 | tabWidth = 2;
625 | usesTabs = 0;
626 | };
627 | 83CBBA001A601CBA00E9B192 /* Products */ = {
628 | isa = PBXGroup;
629 | children = (
630 | 13B07F961A680F5B00A75B9A /* VictoryNativeUIExplorer.app */,
631 | 00E356EE1AD99517003FC87E /* VictoryNativeUIExplorerTests.xctest */,
632 | );
633 | name = Products;
634 | sourceTree = "";
635 | };
636 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
637 | isa = PBXGroup;
638 | children = (
639 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
640 | 2988E0631FB20990000C14B2 /* libRCTBlob-tvOS.a */,
641 | );
642 | name = Products;
643 | sourceTree = "";
644 | };
645 | /* End PBXGroup section */
646 |
647 | /* Begin PBXNativeTarget section */
648 | 00E356ED1AD99517003FC87E /* VictoryNativeUIExplorerTests */ = {
649 | isa = PBXNativeTarget;
650 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "VictoryNativeUIExplorerTests" */;
651 | buildPhases = (
652 | 00E356EA1AD99517003FC87E /* Sources */,
653 | 00E356EB1AD99517003FC87E /* Frameworks */,
654 | 00E356EC1AD99517003FC87E /* Resources */,
655 | );
656 | buildRules = (
657 | );
658 | dependencies = (
659 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
660 | );
661 | name = VictoryNativeUIExplorerTests;
662 | productName = VictoryNativeUIExplorerTests;
663 | productReference = 00E356EE1AD99517003FC87E /* VictoryNativeUIExplorerTests.xctest */;
664 | productType = "com.apple.product-type.bundle.unit-test";
665 | };
666 | 13B07F861A680F5B00A75B9A /* VictoryNativeUIExplorer */ = {
667 | isa = PBXNativeTarget;
668 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "VictoryNativeUIExplorer" */;
669 | buildPhases = (
670 | 13B07F871A680F5B00A75B9A /* Sources */,
671 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
672 | 13B07F8E1A680F5B00A75B9A /* Resources */,
673 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
674 | );
675 | buildRules = (
676 | );
677 | dependencies = (
678 | );
679 | name = VictoryNativeUIExplorer;
680 | productName = "Hello World";
681 | productReference = 13B07F961A680F5B00A75B9A /* VictoryNativeUIExplorer.app */;
682 | productType = "com.apple.product-type.application";
683 | };
684 | /* End PBXNativeTarget section */
685 |
686 | /* Begin PBXProject section */
687 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
688 | isa = PBXProject;
689 | attributes = {
690 | LastUpgradeCheck = 800;
691 | ORGANIZATIONNAME = Facebook;
692 | TargetAttributes = {
693 | 00E356ED1AD99517003FC87E = {
694 | CreatedOnToolsVersion = 6.2;
695 | DevelopmentTeam = 556XY2Y2X4;
696 | TestTargetID = 13B07F861A680F5B00A75B9A;
697 | };
698 | 13B07F861A680F5B00A75B9A = {
699 | DevelopmentTeam = 556XY2Y2X4;
700 | };
701 | };
702 | };
703 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "VictoryNativeUIExplorer" */;
704 | compatibilityVersion = "Xcode 3.2";
705 | developmentRegion = English;
706 | hasScannedForEncodings = 0;
707 | knownRegions = (
708 | en,
709 | Base,
710 | );
711 | mainGroup = 83CBB9F61A601CBA00E9B192;
712 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
713 | projectDirPath = "";
714 | projectReferences = (
715 | {
716 | ProductGroup = 75EF04DA1DA97D3900495F01 /* Products */;
717 | ProjectRef = BC80F1F5627544C8A75BA425 /* CodePush.xcodeproj */;
718 | },
719 | {
720 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
721 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
722 | },
723 | {
724 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
725 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
726 | },
727 | {
728 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
729 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
730 | },
731 | {
732 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
733 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
734 | },
735 | {
736 | ProductGroup = 2E2781B51DAFBD130027B0B7 /* Products */;
737 | ProjectRef = E5F4B046A71B4094B989654C /* RCTGoogleAnalyticsBridge.xcodeproj */;
738 | },
739 | {
740 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
741 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
742 | },
743 | {
744 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
745 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
746 | },
747 | {
748 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
749 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
750 | },
751 | {
752 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
753 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
754 | },
755 | {
756 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
757 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
758 | },
759 | {
760 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
761 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
762 | },
763 | {
764 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
765 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
766 | },
767 | {
768 | ProductGroup = 146834001AC3E56700842450 /* Products */;
769 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
770 | },
771 | {
772 | ProductGroup = 75EF04DC1DA97D3900495F01 /* Products */;
773 | ProjectRef = 7BC31247EF404A96B8CAC4A4 /* RNSVG.xcodeproj */;
774 | },
775 | );
776 | projectRoot = "";
777 | targets = (
778 | 13B07F861A680F5B00A75B9A /* VictoryNativeUIExplorer */,
779 | 00E356ED1AD99517003FC87E /* VictoryNativeUIExplorerTests */,
780 | );
781 | };
782 | /* End PBXProject section */
783 |
784 | /* Begin PBXReferenceProxy section */
785 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
786 | isa = PBXReferenceProxy;
787 | fileType = archive.ar;
788 | path = libRCTActionSheet.a;
789 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
790 | sourceTree = BUILT_PRODUCTS_DIR;
791 | };
792 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
793 | isa = PBXReferenceProxy;
794 | fileType = archive.ar;
795 | path = libRCTGeolocation.a;
796 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
797 | sourceTree = BUILT_PRODUCTS_DIR;
798 | };
799 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
800 | isa = PBXReferenceProxy;
801 | fileType = archive.ar;
802 | path = libRCTImage.a;
803 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
804 | sourceTree = BUILT_PRODUCTS_DIR;
805 | };
806 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
807 | isa = PBXReferenceProxy;
808 | fileType = archive.ar;
809 | path = libRCTNetwork.a;
810 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
811 | sourceTree = BUILT_PRODUCTS_DIR;
812 | };
813 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
814 | isa = PBXReferenceProxy;
815 | fileType = archive.ar;
816 | path = libRCTVibration.a;
817 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
818 | sourceTree = BUILT_PRODUCTS_DIR;
819 | };
820 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
821 | isa = PBXReferenceProxy;
822 | fileType = archive.ar;
823 | path = libRCTSettings.a;
824 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
825 | sourceTree = BUILT_PRODUCTS_DIR;
826 | };
827 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
828 | isa = PBXReferenceProxy;
829 | fileType = archive.ar;
830 | path = libRCTWebSocket.a;
831 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
832 | sourceTree = BUILT_PRODUCTS_DIR;
833 | };
834 | 146834041AC3E56700842450 /* libReact.a */ = {
835 | isa = PBXReferenceProxy;
836 | fileType = archive.ar;
837 | path = libReact.a;
838 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
839 | sourceTree = BUILT_PRODUCTS_DIR;
840 | };
841 | 2944059A2064641A00548DBE /* libjsinspector.a */ = {
842 | isa = PBXReferenceProxy;
843 | fileType = archive.ar;
844 | path = libjsinspector.a;
845 | remoteRef = 294405992064641A00548DBE /* PBXContainerItemProxy */;
846 | sourceTree = BUILT_PRODUCTS_DIR;
847 | };
848 | 2944059C2064641A00548DBE /* libjsinspector-tvOS.a */ = {
849 | isa = PBXReferenceProxy;
850 | fileType = archive.ar;
851 | path = "libjsinspector-tvOS.a";
852 | remoteRef = 2944059B2064641A00548DBE /* PBXContainerItemProxy */;
853 | sourceTree = BUILT_PRODUCTS_DIR;
854 | };
855 | 2988E05A1FB20990000C14B2 /* libCodePush.a */ = {
856 | isa = PBXReferenceProxy;
857 | fileType = archive.ar;
858 | path = libCodePush.a;
859 | remoteRef = 2988E0591FB20990000C14B2 /* PBXContainerItemProxy */;
860 | sourceTree = BUILT_PRODUCTS_DIR;
861 | };
862 | 2988E05F1FB20990000C14B2 /* libRCTAnimation.a */ = {
863 | isa = PBXReferenceProxy;
864 | fileType = archive.ar;
865 | path = libRCTAnimation.a;
866 | remoteRef = 2988E05E1FB20990000C14B2 /* PBXContainerItemProxy */;
867 | sourceTree = BUILT_PRODUCTS_DIR;
868 | };
869 | 2988E0631FB20990000C14B2 /* libRCTBlob-tvOS.a */ = {
870 | isa = PBXReferenceProxy;
871 | fileType = archive.ar;
872 | path = "libRCTBlob-tvOS.a";
873 | remoteRef = 2988E0621FB20990000C14B2 /* PBXContainerItemProxy */;
874 | sourceTree = BUILT_PRODUCTS_DIR;
875 | };
876 | 2988E0691FB20990000C14B2 /* libRCTImage-tvOS.a */ = {
877 | isa = PBXReferenceProxy;
878 | fileType = archive.ar;
879 | path = "libRCTImage-tvOS.a";
880 | remoteRef = 2988E0681FB20990000C14B2 /* PBXContainerItemProxy */;
881 | sourceTree = BUILT_PRODUCTS_DIR;
882 | };
883 | 2988E06D1FB20990000C14B2 /* libRCTLinking-tvOS.a */ = {
884 | isa = PBXReferenceProxy;
885 | fileType = archive.ar;
886 | path = "libRCTLinking-tvOS.a";
887 | remoteRef = 2988E06C1FB20990000C14B2 /* PBXContainerItemProxy */;
888 | sourceTree = BUILT_PRODUCTS_DIR;
889 | };
890 | 2988E0711FB20990000C14B2 /* libRCTNetwork-tvOS.a */ = {
891 | isa = PBXReferenceProxy;
892 | fileType = archive.ar;
893 | path = "libRCTNetwork-tvOS.a";
894 | remoteRef = 2988E0701FB20990000C14B2 /* PBXContainerItemProxy */;
895 | sourceTree = BUILT_PRODUCTS_DIR;
896 | };
897 | 2988E0751FB20990000C14B2 /* libRCTSettings-tvOS.a */ = {
898 | isa = PBXReferenceProxy;
899 | fileType = archive.ar;
900 | path = "libRCTSettings-tvOS.a";
901 | remoteRef = 2988E0741FB20990000C14B2 /* PBXContainerItemProxy */;
902 | sourceTree = BUILT_PRODUCTS_DIR;
903 | };
904 | 2988E0791FB20990000C14B2 /* libRCTText-tvOS.a */ = {
905 | isa = PBXReferenceProxy;
906 | fileType = archive.ar;
907 | path = "libRCTText-tvOS.a";
908 | remoteRef = 2988E0781FB20990000C14B2 /* PBXContainerItemProxy */;
909 | sourceTree = BUILT_PRODUCTS_DIR;
910 | };
911 | 2988E0801FB20990000C14B2 /* libRCTWebSocket-tvOS.a */ = {
912 | isa = PBXReferenceProxy;
913 | fileType = archive.ar;
914 | path = "libRCTWebSocket-tvOS.a";
915 | remoteRef = 2988E07F1FB20990000C14B2 /* PBXContainerItemProxy */;
916 | sourceTree = BUILT_PRODUCTS_DIR;
917 | };
918 | 2988E0821FB20990000C14B2 /* libfishhook.a */ = {
919 | isa = PBXReferenceProxy;
920 | fileType = archive.ar;
921 | path = libfishhook.a;
922 | remoteRef = 2988E0811FB20990000C14B2 /* PBXContainerItemProxy */;
923 | sourceTree = BUILT_PRODUCTS_DIR;
924 | };
925 | 2988E0841FB20990000C14B2 /* libfishhook-tvOS.a */ = {
926 | isa = PBXReferenceProxy;
927 | fileType = archive.ar;
928 | path = "libfishhook-tvOS.a";
929 | remoteRef = 2988E0831FB20990000C14B2 /* PBXContainerItemProxy */;
930 | sourceTree = BUILT_PRODUCTS_DIR;
931 | };
932 | 2988E0941FB20990000C14B2 /* libReact.a */ = {
933 | isa = PBXReferenceProxy;
934 | fileType = archive.ar;
935 | path = libReact.a;
936 | remoteRef = 2988E0931FB20990000C14B2 /* PBXContainerItemProxy */;
937 | sourceTree = BUILT_PRODUCTS_DIR;
938 | };
939 | 2988E0961FB20990000C14B2 /* libyoga.a */ = {
940 | isa = PBXReferenceProxy;
941 | fileType = archive.ar;
942 | path = libyoga.a;
943 | remoteRef = 2988E0951FB20990000C14B2 /* PBXContainerItemProxy */;
944 | sourceTree = BUILT_PRODUCTS_DIR;
945 | };
946 | 2988E0981FB20990000C14B2 /* libyoga.a */ = {
947 | isa = PBXReferenceProxy;
948 | fileType = archive.ar;
949 | path = libyoga.a;
950 | remoteRef = 2988E0971FB20990000C14B2 /* PBXContainerItemProxy */;
951 | sourceTree = BUILT_PRODUCTS_DIR;
952 | };
953 | 2988E09A1FB20990000C14B2 /* libcxxreact.a */ = {
954 | isa = PBXReferenceProxy;
955 | fileType = archive.ar;
956 | path = libcxxreact.a;
957 | remoteRef = 2988E0991FB20990000C14B2 /* PBXContainerItemProxy */;
958 | sourceTree = BUILT_PRODUCTS_DIR;
959 | };
960 | 2988E09C1FB20990000C14B2 /* libjschelpers.a */ = {
961 | isa = PBXReferenceProxy;
962 | fileType = archive.ar;
963 | path = libjschelpers.a;
964 | remoteRef = 2988E09B1FB20990000C14B2 /* PBXContainerItemProxy */;
965 | sourceTree = BUILT_PRODUCTS_DIR;
966 | };
967 | 2988E09E1FB20990000C14B2 /* libthird-party.a */ = {
968 | isa = PBXReferenceProxy;
969 | fileType = archive.ar;
970 | path = "libthird-party.a";
971 | remoteRef = 2988E09D1FB20990000C14B2 /* PBXContainerItemProxy */;
972 | sourceTree = BUILT_PRODUCTS_DIR;
973 | };
974 | 2988E0A01FB20990000C14B2 /* libthird-party.a */ = {
975 | isa = PBXReferenceProxy;
976 | fileType = archive.ar;
977 | path = "libthird-party.a";
978 | remoteRef = 2988E09F1FB20990000C14B2 /* PBXContainerItemProxy */;
979 | sourceTree = BUILT_PRODUCTS_DIR;
980 | };
981 | 2988E0A21FB20990000C14B2 /* libdouble-conversion.a */ = {
982 | isa = PBXReferenceProxy;
983 | fileType = archive.ar;
984 | path = "libdouble-conversion.a";
985 | remoteRef = 2988E0A11FB20990000C14B2 /* PBXContainerItemProxy */;
986 | sourceTree = BUILT_PRODUCTS_DIR;
987 | };
988 | 2988E0A41FB20990000C14B2 /* libdouble-conversion.a */ = {
989 | isa = PBXReferenceProxy;
990 | fileType = archive.ar;
991 | path = "libdouble-conversion.a";
992 | remoteRef = 2988E0A31FB20990000C14B2 /* PBXContainerItemProxy */;
993 | sourceTree = BUILT_PRODUCTS_DIR;
994 | };
995 | 2988E0A61FB20990000C14B2 /* libprivatedata.a */ = {
996 | isa = PBXReferenceProxy;
997 | fileType = archive.ar;
998 | path = libprivatedata.a;
999 | remoteRef = 2988E0A51FB20990000C14B2 /* PBXContainerItemProxy */;
1000 | sourceTree = BUILT_PRODUCTS_DIR;
1001 | };
1002 | 2988E0A81FB20990000C14B2 /* libprivatedata-tvOS.a */ = {
1003 | isa = PBXReferenceProxy;
1004 | fileType = archive.ar;
1005 | path = "libprivatedata-tvOS.a";
1006 | remoteRef = 2988E0A71FB20990000C14B2 /* PBXContainerItemProxy */;
1007 | sourceTree = BUILT_PRODUCTS_DIR;
1008 | };
1009 | 2988E0E41FB20F5B000C14B2 /* libRNSVG-tvOS.a */ = {
1010 | isa = PBXReferenceProxy;
1011 | fileType = archive.ar;
1012 | path = "libRNSVG-tvOS.a";
1013 | remoteRef = 2988E0E31FB20F5B000C14B2 /* PBXContainerItemProxy */;
1014 | sourceTree = BUILT_PRODUCTS_DIR;
1015 | };
1016 | 2E2781BC1DAFBD130027B0B7 /* libRCTGoogleAnalyticsBridge.a */ = {
1017 | isa = PBXReferenceProxy;
1018 | fileType = archive.ar;
1019 | path = libRCTGoogleAnalyticsBridge.a;
1020 | remoteRef = 2E2781BB1DAFBD130027B0B7 /* PBXContainerItemProxy */;
1021 | sourceTree = BUILT_PRODUCTS_DIR;
1022 | };
1023 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
1024 | isa = PBXReferenceProxy;
1025 | fileType = archive.ar;
1026 | path = libcxxreact.a;
1027 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
1028 | sourceTree = BUILT_PRODUCTS_DIR;
1029 | };
1030 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
1031 | isa = PBXReferenceProxy;
1032 | fileType = archive.ar;
1033 | path = libjschelpers.a;
1034 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
1035 | sourceTree = BUILT_PRODUCTS_DIR;
1036 | };
1037 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1038 | isa = PBXReferenceProxy;
1039 | fileType = archive.ar;
1040 | path = libRCTAnimation.a;
1041 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1042 | sourceTree = BUILT_PRODUCTS_DIR;
1043 | };
1044 | 75EF04E01DA97D3A00495F01 /* libCodePush.a */ = {
1045 | isa = PBXReferenceProxy;
1046 | fileType = archive.ar;
1047 | path = libCodePush.a;
1048 | remoteRef = 75EF04DF1DA97D3A00495F01 /* PBXContainerItemProxy */;
1049 | sourceTree = BUILT_PRODUCTS_DIR;
1050 | };
1051 | 75EF04ED1DA97D3A00495F01 /* libRNSVG.a */ = {
1052 | isa = PBXReferenceProxy;
1053 | fileType = archive.ar;
1054 | path = libRNSVG.a;
1055 | remoteRef = 75EF04EC1DA97D3A00495F01 /* PBXContainerItemProxy */;
1056 | sourceTree = BUILT_PRODUCTS_DIR;
1057 | };
1058 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1059 | isa = PBXReferenceProxy;
1060 | fileType = archive.ar;
1061 | path = libRCTLinking.a;
1062 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1063 | sourceTree = BUILT_PRODUCTS_DIR;
1064 | };
1065 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1066 | isa = PBXReferenceProxy;
1067 | fileType = archive.ar;
1068 | path = libRCTText.a;
1069 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1070 | sourceTree = BUILT_PRODUCTS_DIR;
1071 | };
1072 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1073 | isa = PBXReferenceProxy;
1074 | fileType = archive.ar;
1075 | path = libRCTBlob.a;
1076 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1077 | sourceTree = BUILT_PRODUCTS_DIR;
1078 | };
1079 | /* End PBXReferenceProxy section */
1080 |
1081 | /* Begin PBXResourcesBuildPhase section */
1082 | 00E356EC1AD99517003FC87E /* Resources */ = {
1083 | isa = PBXResourcesBuildPhase;
1084 | buildActionMask = 2147483647;
1085 | files = (
1086 | );
1087 | runOnlyForDeploymentPostprocessing = 0;
1088 | };
1089 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1090 | isa = PBXResourcesBuildPhase;
1091 | buildActionMask = 2147483647;
1092 | files = (
1093 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1094 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1095 | );
1096 | runOnlyForDeploymentPostprocessing = 0;
1097 | };
1098 | /* End PBXResourcesBuildPhase section */
1099 |
1100 | /* Begin PBXShellScriptBuildPhase section */
1101 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1102 | isa = PBXShellScriptBuildPhase;
1103 | buildActionMask = 2147483647;
1104 | files = (
1105 | );
1106 | inputPaths = (
1107 | );
1108 | name = "Bundle React Native code and images";
1109 | outputPaths = (
1110 | );
1111 | runOnlyForDeploymentPostprocessing = 0;
1112 | shellPath = /bin/sh;
1113 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1114 | };
1115 | /* End PBXShellScriptBuildPhase section */
1116 |
1117 | /* Begin PBXSourcesBuildPhase section */
1118 | 00E356EA1AD99517003FC87E /* Sources */ = {
1119 | isa = PBXSourcesBuildPhase;
1120 | buildActionMask = 2147483647;
1121 | files = (
1122 | 00E356F31AD99517003FC87E /* VictoryNativeUIExplorerTests.m in Sources */,
1123 | );
1124 | runOnlyForDeploymentPostprocessing = 0;
1125 | };
1126 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1127 | isa = PBXSourcesBuildPhase;
1128 | buildActionMask = 2147483647;
1129 | files = (
1130 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1131 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1132 | );
1133 | runOnlyForDeploymentPostprocessing = 0;
1134 | };
1135 | /* End PBXSourcesBuildPhase section */
1136 |
1137 | /* Begin PBXTargetDependency section */
1138 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1139 | isa = PBXTargetDependency;
1140 | target = 13B07F861A680F5B00A75B9A /* VictoryNativeUIExplorer */;
1141 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1142 | };
1143 | /* End PBXTargetDependency section */
1144 |
1145 | /* Begin PBXVariantGroup section */
1146 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1147 | isa = PBXVariantGroup;
1148 | children = (
1149 | 13B07FB21A68108700A75B9A /* Base */,
1150 | );
1151 | name = LaunchScreen.xib;
1152 | path = VictoryNativeUIExplorer;
1153 | sourceTree = "";
1154 | };
1155 | /* End PBXVariantGroup section */
1156 |
1157 | /* Begin XCBuildConfiguration section */
1158 | 00E356F61AD99517003FC87E /* Debug */ = {
1159 | isa = XCBuildConfiguration;
1160 | buildSettings = {
1161 | BUNDLE_LOADER = "$(TEST_HOST)";
1162 | CODE_SIGN_IDENTITY = "iPhone Developer";
1163 | DEVELOPMENT_TEAM = 556XY2Y2X4;
1164 | GCC_PREPROCESSOR_DEFINITIONS = (
1165 | "DEBUG=1",
1166 | "$(inherited)",
1167 | );
1168 | INFOPLIST_FILE = VictoryNativeUIExplorerTests/Info.plist;
1169 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1170 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1171 | OTHER_LDFLAGS = (
1172 | "-ObjC",
1173 | "-lc++",
1174 | );
1175 | PRODUCT_NAME = "$(TARGET_NAME)";
1176 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/VictoryNativeUIExplorer.app/VictoryNativeUIExplorer";
1177 | };
1178 | name = Debug;
1179 | };
1180 | 00E356F71AD99517003FC87E /* Release */ = {
1181 | isa = XCBuildConfiguration;
1182 | buildSettings = {
1183 | BUNDLE_LOADER = "$(TEST_HOST)";
1184 | CODE_SIGN_IDENTITY = "iPhone Developer";
1185 | COPY_PHASE_STRIP = NO;
1186 | DEVELOPMENT_TEAM = 556XY2Y2X4;
1187 | INFOPLIST_FILE = VictoryNativeUIExplorerTests/Info.plist;
1188 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1189 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1190 | OTHER_LDFLAGS = (
1191 | "-ObjC",
1192 | "-lc++",
1193 | );
1194 | PRODUCT_NAME = "$(TARGET_NAME)";
1195 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/VictoryNativeUIExplorer.app/VictoryNativeUIExplorer";
1196 | };
1197 | name = Release;
1198 | };
1199 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1200 | isa = XCBuildConfiguration;
1201 | buildSettings = {
1202 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1203 | CODE_SIGN_IDENTITY = "iPhone Developer";
1204 | CURRENT_PROJECT_VERSION = 1;
1205 | DEAD_CODE_STRIPPING = NO;
1206 | DEVELOPMENT_TEAM = 556XY2Y2X4;
1207 | INFOPLIST_FILE = VictoryNativeUIExplorer/Info.plist;
1208 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1209 | OTHER_LDFLAGS = (
1210 | "$(inherited)",
1211 | "-ObjC",
1212 | "-lc++",
1213 | );
1214 | PRODUCT_BUNDLE_IDENTIFIER = com.formidable.VictoryNativeUIExplorer;
1215 | PRODUCT_NAME = VictoryNativeUIExplorer;
1216 | SDKROOT = iphoneos;
1217 | TARGETED_DEVICE_FAMILY = 1;
1218 | VERSIONING_SYSTEM = "apple-generic";
1219 | };
1220 | name = Debug;
1221 | };
1222 | 13B07F951A680F5B00A75B9A /* Release */ = {
1223 | isa = XCBuildConfiguration;
1224 | buildSettings = {
1225 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1226 | CODE_SIGN_IDENTITY = "iPhone Developer";
1227 | CURRENT_PROJECT_VERSION = 1;
1228 | DEVELOPMENT_TEAM = 556XY2Y2X4;
1229 | INFOPLIST_FILE = VictoryNativeUIExplorer/Info.plist;
1230 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1231 | OTHER_LDFLAGS = (
1232 | "$(inherited)",
1233 | "-ObjC",
1234 | "-lc++",
1235 | );
1236 | PRODUCT_BUNDLE_IDENTIFIER = com.formidable.VictoryNativeUIExplorer;
1237 | PRODUCT_NAME = VictoryNativeUIExplorer;
1238 | SDKROOT = iphoneos;
1239 | TARGETED_DEVICE_FAMILY = 1;
1240 | VERSIONING_SYSTEM = "apple-generic";
1241 | };
1242 | name = Release;
1243 | };
1244 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1245 | isa = XCBuildConfiguration;
1246 | buildSettings = {
1247 | ALWAYS_SEARCH_USER_PATHS = NO;
1248 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1249 | CLANG_CXX_LIBRARY = "libc++";
1250 | CLANG_ENABLE_MODULES = YES;
1251 | CLANG_ENABLE_OBJC_ARC = YES;
1252 | CLANG_WARN_BOOL_CONVERSION = YES;
1253 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1254 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1255 | CLANG_WARN_EMPTY_BODY = YES;
1256 | CLANG_WARN_ENUM_CONVERSION = YES;
1257 | CLANG_WARN_INFINITE_RECURSION = YES;
1258 | CLANG_WARN_INT_CONVERSION = YES;
1259 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1260 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1261 | CLANG_WARN_UNREACHABLE_CODE = YES;
1262 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1263 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1264 | COPY_PHASE_STRIP = NO;
1265 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1266 | ENABLE_TESTABILITY = YES;
1267 | GCC_C_LANGUAGE_STANDARD = gnu99;
1268 | GCC_DYNAMIC_NO_PIC = NO;
1269 | GCC_NO_COMMON_BLOCKS = YES;
1270 | GCC_OPTIMIZATION_LEVEL = 0;
1271 | GCC_PREPROCESSOR_DEFINITIONS = (
1272 | "DEBUG=1",
1273 | "$(inherited)",
1274 | );
1275 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1276 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1277 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1278 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1279 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1280 | GCC_WARN_UNUSED_FUNCTION = YES;
1281 | GCC_WARN_UNUSED_VARIABLE = YES;
1282 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1283 | MTL_ENABLE_DEBUG_INFO = YES;
1284 | ONLY_ACTIVE_ARCH = YES;
1285 | SDKROOT = iphoneos11.1;
1286 | };
1287 | name = Debug;
1288 | };
1289 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1290 | isa = XCBuildConfiguration;
1291 | buildSettings = {
1292 | ALWAYS_SEARCH_USER_PATHS = NO;
1293 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1294 | CLANG_CXX_LIBRARY = "libc++";
1295 | CLANG_ENABLE_MODULES = YES;
1296 | CLANG_ENABLE_OBJC_ARC = YES;
1297 | CLANG_WARN_BOOL_CONVERSION = YES;
1298 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1299 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1300 | CLANG_WARN_EMPTY_BODY = YES;
1301 | CLANG_WARN_ENUM_CONVERSION = YES;
1302 | CLANG_WARN_INFINITE_RECURSION = YES;
1303 | CLANG_WARN_INT_CONVERSION = YES;
1304 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1305 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1306 | CLANG_WARN_UNREACHABLE_CODE = YES;
1307 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1308 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1309 | COPY_PHASE_STRIP = YES;
1310 | ENABLE_NS_ASSERTIONS = NO;
1311 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1312 | GCC_C_LANGUAGE_STANDARD = gnu99;
1313 | GCC_NO_COMMON_BLOCKS = YES;
1314 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1315 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1316 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1317 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1318 | GCC_WARN_UNUSED_FUNCTION = YES;
1319 | GCC_WARN_UNUSED_VARIABLE = YES;
1320 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1321 | MTL_ENABLE_DEBUG_INFO = NO;
1322 | SDKROOT = iphoneos11.1;
1323 | VALIDATE_PRODUCT = YES;
1324 | };
1325 | name = Release;
1326 | };
1327 | /* End XCBuildConfiguration section */
1328 |
1329 | /* Begin XCConfigurationList section */
1330 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "VictoryNativeUIExplorerTests" */ = {
1331 | isa = XCConfigurationList;
1332 | buildConfigurations = (
1333 | 00E356F61AD99517003FC87E /* Debug */,
1334 | 00E356F71AD99517003FC87E /* Release */,
1335 | );
1336 | defaultConfigurationIsVisible = 0;
1337 | defaultConfigurationName = Release;
1338 | };
1339 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "VictoryNativeUIExplorer" */ = {
1340 | isa = XCConfigurationList;
1341 | buildConfigurations = (
1342 | 13B07F941A680F5B00A75B9A /* Debug */,
1343 | 13B07F951A680F5B00A75B9A /* Release */,
1344 | );
1345 | defaultConfigurationIsVisible = 0;
1346 | defaultConfigurationName = Release;
1347 | };
1348 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "VictoryNativeUIExplorer" */ = {
1349 | isa = XCConfigurationList;
1350 | buildConfigurations = (
1351 | 83CBBA201A601CBA00E9B192 /* Debug */,
1352 | 83CBBA211A601CBA00E9B192 /* Release */,
1353 | );
1354 | defaultConfigurationIsVisible = 0;
1355 | defaultConfigurationName = Release;
1356 | };
1357 | /* End XCConfigurationList section */
1358 | };
1359 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1360 | }
1361 |
--------------------------------------------------------------------------------