From ffcb0b0287ce26de5472a2501d8f95b286670ea9 Mon Sep 17 00:00:00 2001 From: hello_world <153901583+chengcheng84@users.noreply.github.com> Date: Sat, 17 Jan 2026 19:53:50 +0800 Subject: [PATCH] fix:The tablet's arbitrary settings interface cannot scroll --- src/screens/settings/SettingsScreen.tsx | 34 +++++++++++++------------ 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/src/screens/settings/SettingsScreen.tsx b/src/screens/settings/SettingsScreen.tsx index 75f7311ed..0cc39556b 100644 --- a/src/screens/settings/SettingsScreen.tsx +++ b/src/screens/settings/SettingsScreen.tsx @@ -1,7 +1,7 @@ import { useNavigation } from '@react-navigation/native' import React from 'react' import { useTranslation } from 'react-i18next' -import { View } from 'react-native' +import { ScrollView, View } from 'react-native' import { GestureDetector } from 'react-native-gesture-handler' import { @@ -110,21 +110,23 @@ export default function SettingsScreen() { - - {settingsItems.map((group, index) => ( - - {group.items.map((item, index) => ( - - ))} - - ))} - + + + {settingsItems.map((group, index) => ( + + {group.items.map((item, index) => ( + + ))} + + ))} + +