flutter_vibrate icon indicating copy to clipboard operation
flutter_vibrate copied to clipboard

A flutter plugin for device vibration

Results 11 flutter_vibrate issues
Sort by recently updated
recently updated
newest added

I am using below code ``` // Check if the device can vibrate bool canVibrate = await Vibrate.canVibrate; print("canVibrate = ${canVibrate}"); // returns true Vibrate.vibrate(); ``` Still it doesn't vibrate...

The plugin `flutter_vibrate` uses a deprecated version of the Android embedding. To avoid unexpected runtime failures, or future build failures, try to see if these plugins support the Android V2...

Is there any change this library getting null safety support?

我需要一个开关来设置是否振动, Vibrate.enabel(bool boolfeedback); 当我设置 false, 调用 Vibrate.feedback(type); 不能振动。

My project complies and runs on Android, but when running on iOS I get this error. ``` Error output from Xcode build: ↳ ** BUILD FAILED ** Xcode's output: ↳...

Here is the error: `Xcode's output: ↳ The “Swift Language Version” (SWIFT_VERSION) build setting must be set to a supported value for targets which use Swift. Supported values are: 3.0,...

Hi I used the example from the source code and only "Vibrate" and "Vibrate with Pause" are working. Any idea what I could try to solve the issue? With my...

I got this error trying to run on android. `Running "flutter packages get" in Redwood... 1.1s Launching lib/main.dart on Android SDK built for x86 in debug mode... Initializing gradle... Resolving...

@clovisnicolas Maybe we can provide a optional duration parameter in public api so that client can set vibrate duration as they ?