fix(mobile): enable scrolling in terminal WebView

scrollEnabled was set to false, which blocked touch scroll gestures
that xterm.js needs to scroll through terminal history.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
suraj-markup 2026-03-03 04:00:55 +05:30
parent 034e1a0e25
commit 07cd72c36d
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ export default function TerminalScreen({ route }: Props) {
allowFileAccess={false}
javaScriptEnabled={true}
domStorageEnabled={false}
scrollEnabled={false}
scrollEnabled={true}
bounces={false}
overScrollMode="never"
showsVerticalScrollIndicator={false}