From 5f07b5075dd45b4b0f4ab35ee70412f11177eff4 Mon Sep 17 00:00:00 2001 From: Landon Epps Date: Wed, 20 Aug 2025 04:50:12 -0400 Subject: fix(mobile): fix WebView deceleration rate on iOS (#1835) The mobile app uses a WebView to display the bookmark preview. WebView on iOS has a "fast" deceleration rate by default, which is much slower than the system default. We should update it to "normal" to match the non-WebView screens in the app. --- apps/mobile/components/bookmarks/BookmarkLinkPreview.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/mobile/components/bookmarks/BookmarkLinkPreview.tsx') diff --git a/apps/mobile/components/bookmarks/BookmarkLinkPreview.tsx b/apps/mobile/components/bookmarks/BookmarkLinkPreview.tsx index 03999c3e..443d6284 100644 --- a/apps/mobile/components/bookmarks/BookmarkLinkPreview.tsx +++ b/apps/mobile/components/bookmarks/BookmarkLinkPreview.tsx @@ -112,6 +112,7 @@ export function BookmarkLinkReaderPreview({ }} showsVerticalScrollIndicator={false} showsHorizontalScrollIndicator={false} + decelerationRate="normal" /> ); @@ -145,6 +146,7 @@ export function BookmarkLinkArchivePreview({ startInLoadingState={true} mediaPlaybackRequiresUserAction={true} source={webViewUri} + decelerationRate="normal" /> ); } -- cgit v1.2.3-70-g09d2