gestures 0.0.1 copy "gestures: ^0.0.1" to clipboard
gestures: ^0.0.1 copied to clipboard

outdated

Custom Gesture Detector for Flutter. Empower your users with custom gestures.

Gestures #

pub package

Custom Gesture Detector for Flutter. Empower your users with custom gestures.

How to use #

In your pubspec.yaml:

dependencies:
  gestures: ^0.0.1
import 'package:gestures/gestures.dart';

Basic construction of the widget:

CustomGestureDetector(
  gestures: [
    GestureLine(AxisDirection.down),
    GestureLine(AxisDirection.right),
    GestureLine(AxisDirection.up),
  ],
  onGestureEnd: (success) {
    if (success) {
      // TODO: your action here..
    }
  },
  child: Container(),
)

License #

Licensed under the MIT license.

5
likes
30
pub points
87%
popularity

Publisher

verified publisherandrebaltazar.com

Custom Gesture Detector for Flutter. Empower your users with custom gestures.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on gestures