2.3.3 • Published 4 years ago

react-native-touch-gestures v2.3.3

Weekly downloads
17
License
MIT
Repository
github
Last release
4 years ago

react-native-touch-gestures

Native gestures in React Native

Getting started

$ npm install react-native-touch-gestures --save

Mostly automatic installation

$ react-native link react-native-touch-gestures

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-touch-gestures and add RNGGestures.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNGGestures.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Usage

import Gestures from 'react-native-touch-gestures';

class Example extends Component {
  render() {
    return (
      <View>
        <Gestures.View // Wrap the view with the Gestures view that recognizes pinch
          onPinch={this.onPinch}
          onTap={this.onTap}
          onPan={this.onPan}
        >
          <Text>hello world</Text>
        </Gestures.View>
      </View>
    );
  }
  
  onPinch(event) {
    console.log(
      'onPinch -- ',
      'gestureId: ', event.nativeEvent.gestureId, // unique id per gesture
      'action: ', event.nativeEvent.action, // 'start' | 'change' | 'finish'
      'scale: ', event.nativeEvent.scale
    );
  }

  onTap(event) {
    console.log(
      'onTap -- ',
      'gestureId: ', event.nativeEvent.gestureId // unique id per gesture
    );
  }

  onPan(event) {
    console.log(
    'onPan -- ',
    'gestureId: ', event.nativeEvent.gestureId,
      'action: ', event.nativeEvent.action, // 'start' | 'change' | 'finish'
      'x: ', event.nativeEvent.x,
      'y: ', event.nativeEvent.y
    );
  }
}

Roadmap

  • Add support for Android
  • Add support for more gestures
2.3.3

4 years ago

2.3.2

5 years ago

2.3.1

6 years ago

2.3.0

6 years ago

1.3.0

6 years ago

1.2.0

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago