gesturedeck_flutter 1.2.1 copy "gesturedeck_flutter: ^1.2.1" to clipboard
gesturedeck_flutter: ^1.2.1 copied to clipboard

Gesturedeck empowers users to effortlessly control their devices through intuitive touch gestures, without even needing to look at the screen..

Gesturedeck Flutter #

gesturedeck_flutter version

Overview #

Revolutionize your app's user experience with the extraordinary power of Gesturedeck! Seamlessly integrated into your application, Gesturedeck empowers users to effortlessly control their devices through intuitive touch gestures, without even needing to look at the screen.

   

Imagine enhancing your app with the ability to adjust volume, skip tracks, and perform various actions effortlessly, making interactions smoother and more natural than ever before. Whether users are driving, biking, or engaged in any activity that demands their full attention, Gesturedeck ensures a seamless experience that enhances productivity and safety.

The Gesturedeck Flutter plugin is compatible with both Android and iOS.

Key Features #

  • Intuitive touch gestures for seamless device control.
  • Customizable gesture actions for enhanced user interactions.
  • Integrated GesturedeckMedia for media app controls with overlay UI support.
  • Support for volume button actions with GesturedeckMedia.
  • Sensitivity settings for fine-tuning gesture responsiveness.
  • Does not require internet connectivity.

Getting Started #

Setup Gesturedeck #

Integrate Gesturedeck into your Flutter app with just a few steps:

  1. Initialize Gesturedeck:
await Gesturedeck.initialize(
    tapAction: () {},
    swipeLeftAction: () {},
    swipeRightAction: () {},
    panAction: () {},
);

// Or set actions after initialization
Gesturedeck.tapAction = (){}
  1. Start and stop Gesturedeck detection:
Gesturedeck.start();
Gesturedeck.stop();

To disable a gesture action, set its corresponding parameter to null when initializing Gesturedeck, like this:

await Gesturedeck.initialize(
    tapAction: null,
);

Alternatively, you can disable a gesture action by setting its corresponding property to null after Gesturedeck has been initialized, like this:

Gesturedeck.tapAction = null

Setup GesturedeckMedia #

Enhance media app controls using GesturedeckMedia:

  1. Initialize GesturedeckMedia with overlay UI customization:
await GesturedeckMedia.initialize(
    tapAction: () {},
    swipeLeftAction: () {},
    swipeRightAction: () {},
    panAction: () {},
    gesturedeckMediaOverlay: GesturedeckMediaOverlay(
        topIcon: icon,
        iconSwipeLeft: ...,
        iconSwipeRight: ...,
        iconTap: ...,
        iconTapToggled: ...,
    ),
);
  1. Start and stop GesturedeckMedia detection:
GesturedeckMedia.start();
GesturedeckMedia.stop();
  1. Customize reverse horizontal swipes:
GesturedeckMedia.reverseHorizontalSwipes = true;

To display GesturedeckMedia UI when pressing volume buttons in Android, replace class MainActivity : FlutterActivity() with class MainActivity : GesturedeckFlutterActivity() in native Android.

iOS only

When using the default gesture actions you need to add the NSAppleMusicUsageDescription key in your project's Info tab with a value explaining why you need this permission (e.g. "Control music playback").

API reference #

You can find the API reference here.

Free to Use #

Gesturedeck SDK is freely available for use in both personal and commercial projects, offering full functionality without time limitations. However, when using the free version, a watermark will be displayed during runtime. It is strictly prohibited to hide, remove, or alter the watermark from the free version of Gesturedeck SDK.

Activation Key and Watermark Removal #

To remove the watermark from your app, an activation key is available for purchase. The watermark-free version of Gesturedeck SDK can be obtained through this activation key.

You need to set a different activation key for each platform.

To inquire about purchasing an activation key or for any other questions related to licensing and usage, please reach out to us at team@navideck.com. We are here to assist you with the process and provide the necessary information.

Contact #

For any inquiries, questions, or support, please don't hesitate to contact our team at team@navideck.com. Thank you for choosing Gesturedeck Flutter Plugin!

4
likes
130
pub points
2%
popularity

Publisher

verified publishernavideck.com

Gesturedeck empowers users to effortlessly control their devices through intuitive touch gestures, without even needing to look at the screen..

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on gesturedeck_flutter