fix scrollview bottom padding (#1556)

This commit is contained in:
Justin Hernandez
2026-01-07 15:11:34 -08:00
committed by GitHub
parent 906ca505d3
commit 6e01b3c114

View File

@@ -255,7 +255,10 @@ const ScreenSelector = ({}) => {
/>
</Button>
</XStack>
<ScrollView showsVerticalScrollIndicator={false}>
<ScrollView
showsVerticalScrollIndicator={false}
contentContainerStyle={{ paddingBottom: 100 }}
>
{screenList.map(item => (
<TouchableOpacity
key={item}