This facade is deprecated since version 2.0.0. Use Device::vibrate() instead.
Import
use Native\Mobile\Facades\Haptics;
Methods
vibrate() Deprecated
Trigger a haptic vibration.
use Native\Mobile\Facades\Haptics;
Haptics::vibrate();
This method has been deprecated. Use Device::vibrate() for haptic feedback.
Migration
To migrate from the deprecated Haptics facade to the Device facade:
Before (Deprecated):
use Native\Mobile\Facades\Haptics;
Haptics::vibrate();
After (Recommended):
use Native\Mobile\Facades\Device;
$success = Device::vibrate();
See the Device API documentation for more information.