flutter_vibration icon indicating copy to clipboard operation
flutter_vibration copied to clipboard

Handle vibration on iOS and Android in Flutter apps

Results 31 flutter_vibration issues
Sort by recently updated
recently updated
newest added

Solve compilation problems caused by language problems

Tested on iOS: Having an odd number of elements in the pattern list will cause the app to completely crash

while try to make a iOS build it crash due to this error--> Unhandled exception: FileSystemException(uri=org-dartlang-untranslatable-uri:package%3Avibration%2Fvibration.dart; message=StandardFileSystem only supports file:* and data:* URIs) #0 StandardFileSystem.entityForUri (package:front_end/src/api_prototype/standard_file_system.dart:34:7) #1 asFileUri (package:vm/kernel_front_end.dart:623:37) #2...

I have no problem on android but tried on 2 devices in ios it didn't work He's working on a sample project on iOS. Doesn't work on my project I...

It would be really cool to check, whether the vibration is enabled by the user, so that one can respect the user settings and vibrate only if the vibration is...

I don't know if this is the expected behavior of the plugin, but I just noticed it doesn't vibrate if at the same time Android is handling a phone call...

Hi, I'm using vibration in an app on Android, Web and Linux. Android and Web works as expected but since some days, I get a `MissingPluginException(No implementation found for method...

Hi, Vibration doesn't work when used with `SystemSound`, works fine when used alone. Not Work: ```dart SystemSound.play(SystemSoundType.click); Vibration.vibrate(pattern: [10, 12, 10, 12], intensities: [1, 100]); ``` Work fine: ```dart Vibration.vibrate(pattern:...

Is there any possibility to have vibration support for web?