shake_event 0.0.9 copy "shake_event: ^0.0.9" to clipboard
shake_event: ^0.0.9 copied to clipboard

A shake event listener for Android and iOS. You can listen to shake events and set the threshold to define how precisely you want to listen to these events.

shake_event #

A cross-platform shake event listener for Flutter applications.

Installation #

First, add shake_event as a dependency in your pubspec.yaml file.

dependencies:
  shake_event: ^0.0.9

Example #

import 'package:shake_event/shake_event.dart';

...
class _MyStatefulWidgetState extends State<HomeStatefulWidget> with ShakeHandler {
  @override
  void initState() {
    startListeningShake(20); //20 is the default threshold value for the shake event
    super.initState();
  }

  @override
  void dispose() {
    resetShakeListeners();
    super.dispose();
  }

  @override
  shakeEventListener() {
    //DO ACTIONS HERE
    return super.shakeEventListener();
  }

  ...
}
8
likes
150
points
53
downloads

Publisher

verified publisherdbilgin.com

Weekly Downloads

A shake event listener for Android and iOS. You can listen to shake events and set the threshold to define how precisely you want to listen to these events.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, rxdart, sensors

More

Packages that depend on shake_event