Files
react-native/RNTester/js/examples/JSResponderHandlerExample/JSResponderHandlerExample.js
T
Michael Bolin cf44650b3f Upgrade Prettier from 1.17 to 2.0.2.
Summary:
This gets us on the latest Prettier 2.x:
https://prettier.io/blog/2020/03/21/2.0.0.html

Notably, this adds support for TypeScript 3.8,
which introduces new syntax, such as `import type`.

Reviewed By: zertosh

Differential Revision: D20636268

fbshipit-source-id: fca5833d003804333a05ba16325bbbe0e06d6c8a
2020-03-24 20:24:47 -07:00

78 lines
1.9 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow strict-local
*/
'use strict';
const React = require('react');
const {Text, View, StyleSheet} = require('react-native');
import {PanResponder, ScrollView} from 'react-native';
exports.displayName = 'JSResponderHandlerExample';
exports.framework = 'React';
exports.title = '<JSResponderHandler>';
exports.description = 'Simple example to test JSResponderHandler.';
const _gesture = PanResponder.create({
onMoveShouldSetPanResponder: (e, gestureState) => {
return Math.abs(gestureState.moveX) > 150;
},
});
exports.examples = [
{
title: 'JSResponderHandlerExample',
description: ('This example tests the native JSResponderHandler: when the user ' +
'scrolls on the right side of the ScrollView (white area located on the' +
' right side of the gray area), the touch event is managed by native ' +
'which blocks the scroll event.': string),
render: function (): React.Node {
const views = [];
for (let i = 0; i < 100; i++) {
views[i] = (
<View key={i} style={styles.row} collapsable={false}>
<View style={styles.touchable_area} collapsable={false}>
<Text>I am row {i}</Text>
</View>
</View>
);
}
return (
<View
style={styles.container}
{..._gesture.panHandlers}
collapsable={false}>
<ScrollView style={styles.scrollview} testID="scroll_view">
{views}
</ScrollView>
</View>
);
},
},
];
const styles = StyleSheet.create({
container: {
flex: 1,
},
scrollview: {
flex: 1,
},
row: {
height: 25,
},
touchable_area: {
width: 150,
backgroundColor: 'lightgray',
},
});