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

The easy way to detect swipe up, down, left and right in Flutter.

Swipe #

The easy way to detect swipe up, down, left and right in Flutter.

Getting Started #

Add dependency to your flutter project:

$ flutter pub add swipe
copied to clipboard

or

dependencies:
  swipe: ^0.0.1
copied to clipboard

or

dependencies:
  swipe:
    git: 
      url: git://github.com/salkuadrat/swipe.git
copied to clipboard

Then run flutter pub get.

Usage #

Here is a simple way of using Swipe.

Swipe(
  child: ..., // your child widget
  onSwipeUp: () {
    // do something when swiping up
  },
  onSwipeDown: () {
    // do something when swiping down
  },
  onSwipeLeft: () {
    // do something when swiping left
  },
  onSwipeRight: () {
    // do something when swiping right
  },
)
copied to clipboard

Customization #

Swipe widget comes with additional parameters to customize your swiping experience.

Swipe(
  child: ...,
  onSwipeUp: ...,
  onSwipeDown: ...,
  onSwipeLeft: ...,
  onSwipeRight: ...,
  verticalMaxWidthThreshold: 50,
  verticalMinDisplacement: 100,
  verticalMinVelocity: 300,
  horizontalMaxHeightThreshold: 50,
  horizontalMinDisplacement: 100,
  horizontalMinVelocity: 300,
)
copied to clipboard

Example #

You can try a working example here.

46
likes
160
points
2.06k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.29 - 2025.04.13

The easy way to detect swipe up, down, left and right in Flutter.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on swipe