Files
FocusGram-Android/lib/scripts/haptic_bridge.dart
T
2026-05-25 22:12:38 +05:45

12 lines
383 B
Dart

const String kHapticBridgeScript = '''
(function() {
// Trigger native haptic feedback on double-tap (like gesture on posts)
// Uses flutter_inappwebview's callHandler instead of postMessage
document.addEventListener('dblclick', function(e) {
if (window.flutter_inappwebview) {
window.flutter_inappwebview.callHandler('Haptic', 'light');
}
}, true);
})();
''';