Files
FocusGram-Android/lib/scripts/scroll_smoothing.dart
Ujwal 7992d65bc8 RELEASE: moved from beta to First stable release.
Check CHANGELOG.md for full changelog
2026-02-27 04:14:40 +05:45

14 lines
478 B
Dart

/// JS to improve momentum scrolling behaviour inside the WebView, especially
/// for content-heavy feeds like Reels.
///
/// Applies touch-style overflow scrolling hints to the root element.
const String kScrollSmoothingJS = r'''
(function fgScrollSmoothing() {
try {
document.documentElement.style.setProperty('-webkit-overflow-scrolling', 'touch');
document.documentElement.style.setProperty('overflow-scrolling', 'touch');
} catch (_) {}
})();
''';