From 1a829a120fb1f94fbeadef3708f2496e9d6adab6 Mon Sep 17 00:00:00 2001 From: Sergei Date: Tue, 23 Dec 2025 18:13:58 -0800 Subject: [PATCH] Fix voice picker scroll - add maxHeight and nestedScrollEnabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ScrollView now properly scrolls through all 35+ voices 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/(tabs)/voice.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/(tabs)/voice.tsx b/app/(tabs)/voice.tsx index 5fe779a..026fa72 100644 --- a/app/(tabs)/voice.tsx +++ b/app/(tabs)/voice.tsx @@ -909,7 +909,12 @@ Based on this data, please answer the following question: ${question}`; - + {/* English Voices Section */} English Voices {AVAILABLE_VOICES.filter(v => v.language.startsWith('en-')).map(voice => ( @@ -1390,6 +1395,7 @@ const styles = StyleSheet.create({ }, voiceList: { flex: 1, + maxHeight: 400, padding: Spacing.sm, }, voiceSectionTitle: {