haptic_feedback 0.0.4 haptic_feedback: ^0.0.4 copied to clipboard
A Flutter plugin for haptic feedback. It uses the standard iOS haptics, and analog haptics on Android.
haptic_feedback #
A haptic feedback plugin for both iOS and Android.
While it utilizes standard iOS haptics, it aims to emulate these same haptic patterns on Android for a consistent experience across platforms.
Getting Started #
1. Add the dependency #
flutter pub add haptic_feedback
2. Use the plugin #
const _haptics = Haptics();
final canVibrate = await _haptics.canVibrate;
await _haptics.vibrate(HapticType.success);
await _haptics.vibrate(HapticType.warning);
await _haptics.vibrate(HapticType.error);
await _haptics.vibrate(HapticType.light);
await _haptics.vibrate(HapticType.medium);
await _haptics.vibrate(HapticType.heavy);
await _haptics.vibrate(HapticType.rigid);
await _haptics.vibrate(HapticType.soft);
await _haptics.vibrate(HapticType.selection);