appinio_swiper 2.0.0 icon indicating copy to clipboard operation
appinio_swiper: ^2.0.0 copied to clipboard

An awesome fully custamisable Tinder Card Swiper which allows swiping in all directions with any Custom Widget (Stateless or Statefull).

appinio_swiper is a Flutter package for a Tinder Card Swiper. ✨

It allows swiping in all directions with any Custom Widget (Stateless or Statefull).

Very smooth animations supporting Android, iOS & WebApp.

Why? #

We build this package because we wanted to:

  • have a complete customizable slider
  • be able to swipe in every direction
  • trigger unswipe however we want
  • choose our own settings for the swiper such as duration, angle, padding..
  • NEW: trigger swipe, swipe left/right or swipe up/down however we want
  • NEW: set swipe options and restrict horizontal or vertical swipe.
  • NEW: set loop for infinite scroll
  • NEW: update the list of cards between swipes.

❗NEW Features ❗ #

Trigger swipe up and swipe down through controller #

You can now trigger swipe up and swipe down with our AppinioSwiperController regardless of the chosen AppinioSwipeDirection (which is still used when swipe is called through the controller). Just like the swipeLeft and swipeRight call, you can call swipeUp or swipeDown through the controller anywhere you want.

Restrict horizontal or vertical swipe #

You can now restrict the swipe in either horizontal directions or vertical directions using swipeOptions property.

Set looping for card swipe #

Now you can set the loop property to true and make the list infinitely scrollable.

Update the cards while swiping #

In this version we have replaced the list of cards with cardsBuilder. Now the widget only renders two cards at a time which makes it lightweight and scalable. So you can perform operations on your card anytime.

Show Cases #

Trigger swipe right and swipe left however you want...

Unswipe the cards however you want...

Customize the angle...

Customize the threshold of the swiper, when the card should slide away...

Installation #

Create a new project with the command

flutter create MyApp

Add

appinio_swiper: ...

to your pubspec.yaml of your flutter project. OR run

flutter pub add appinio_swiper

in your project's root directory.

In your library add the following import:

import 'package:appinio_swiper/appinio_swiper.dart';

For help getting started with Flutter, view the online documentation.

Usage #

You can place your AppinioSwiper inside of a Scaffold or CupertinoPageScaffold like we did here. Optional parameters can be defined to enable different features. See the following example..

import 'package:appinio_swiper/appinio_swiper.dart';
import 'package:flutter/cupertino.dart';

class Example extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return CupertinoPageScaffold(
      child: SizedBox(
        height: MediaQuery.of(context).size.height * 0.75,
        child: AppinioSwiper(
          cardsCount: 10,
          cardsBuilder: (BuildContext context,int index){
              return Container(
                          alignment: Alignment.center,
                          child: const Text(index.toString()),
                          color: CupertinoColors.activeBlue,
                          );
          },
        ),
      ),
    );
  }
}

Constructor #

Basic

ParameterDefaultDescriptionRequired
cardsCount-Number of cards you want to rendertrue
cardsBuilder-Callback of the type CardsBuildertrue
swipeOptions-value of type AppinioSwipeOptions to restrict swipesfalse
controller-Trigger unswipefalse
paddingEdgeInsets.symmetric(horizontal: 20, vertical: 25)Control swiper paddingfalse
duration200 millisecondsThe duration that every animation should lastfalse
maxAngle30Maximum angle the card reaches while swipingfalse
threshold50Threshold from which the card is swiped awayfalse
isDisabledfalseSet to true if swiping should be disabled, has no impact when triggered from the outsidefalse
onTapDisabled-Function that get triggered when the swiper is disabledfalse
onSwipe-Called with the new index and detected swipe direction when the user swipedfalse
onEnd-Called when there is no Widget left to be swiped awayfalse
directionrightDirection in which the card is swiped away when triggered from the outsidefalse
allowUnswipetrueSet to false if unswipe should be disabled awayfalse
unlimitedUnswipefalseSet to true if the user can unswipe as many cards as possiblefalse
unswipe-Called with the boolean true when the last card gets unswiped and with the boolean false if there is no card to unswipefalse

Controller

The Controller is used to control the swipe, swipeLeft, swipeRight, swipeUp, swipeDown or unswipe function of the swiper from outside of the widget. You can create a controller called AppinioSwiperController and save the instance for further usage. Please have a closer look to our Example for the usage.

MethodDescription
swipeChanges the state of the controller to swipe and swipes the card in your selected direction.
swipeLeftChanges the state of the controller to swipe left and swipes the card to the left side.
swipeRightChanges the state of the controller to swipe right and swipes the card to the right side.
swipeUpChanges the state of the controller to swipe up and swipes the card to the up side.
swipeDownChanges the state of the controller to swipe down and swipes the card to the down side.
unswipeChanges the state of the controller to unswipe and brings back the last card that was swiped away.

Made with ❤ by Flutter team at Appinio GmbH
180
likes
140
pub points
93%
popularity

Publisher

verified publisher iconappinio.app

An awesome fully custamisable Tinder Card Swiper which allows swiping in all directions with any Custom Widget (Stateless or Statefull).

Homepage
Repository (GitHub)

Documentation

API reference

License

Icon for licenses.MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on appinio_swiper