Skip to main content

Callbacks

Execute a block of a code when a certain action is executed by Shake

Shake open callback

If you want to perform an action when Shake interface is opened, you can do it like shown below:

main.dart
Shake.setShakeOpenListener(() {
print('Shake opened!');
});

Shake dismiss callback

If you want to perform an action when Shake interface is closed, you can do it like shown below:

main.dart
Shake.setShakeDismissListener(() {
print('Shake dismissed!');
});

Shake submit callback

To detect when user pressed a submit button on the New ticket screen, add a submit listener like in the example below.

This listener provides type and fields parameters:

  • reportType: String - "crash" or "feedback" depending on the type of the ticket
  • fields: Map<String, String> - key value pairs of submitted form fields
main.dart
Shake.setShakeSubmitListener((String reportType, Map<String, String> fields) {
print('Shake submitted!');
});