This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input | output | |
0 | 0 | |
20 | 20 | |
40 | 20 | |
60 | 20 | |
50 | 10 | |
40 | 0 | |
50 | 10 | |
20 | 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import React, { Component } from 'react'; | |
import { | |
VirtualizedList, | |
View, | |
ScrollView, | |
StyleSheet, | |
// $FlowFixMe | |
findNodeHandle, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
/** | |
* Enables Fiber by changing the ReactNativeFeatureFlags.js file. This is likely | |
* to break when updating React Native, make sure the file hasn't changed location. | |
*/ | |
const path = require('path'); | |
const { sed } = require('shelljs'); | |
const REACT_FLAGS_FILE = path.resolve( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
const path = require('path'); | |
const { find, sed } = require('shelljs'); | |
const NODE_MODULES = path.resolve(__dirname, '../node_modules'); | |
const files = find(NODE_MODULES).filter( | |
file => | |
file.match(/.*build.gradle$/) && |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import * as React from 'react'; | |
import { AppState } from 'react-native'; | |
import { Environment, RecordSource, Store } from 'relay-runtime'; | |
import { QueryRenderer } from 'react-relay'; | |
import ErrorView from './components/ErrorView'; | |
import LoadingView from './components/LoadingView'; |