Skip to content

Instantly share code, notes, and snippets.

@gigobyte
Created July 11, 2025 09:53
Show Gist options
  • Select an option

  • Save gigobyte/5d1d0bf9e5f188f6590210a21fc6eb3a to your computer and use it in GitHub Desktop.

Select an option

Save gigobyte/5d1d0bf9e5f188f6590210a21fc6eb3a to your computer and use it in GitHub Desktop.
import { Pressable, ScrollView } from 'react-native-gesture-handler'
function Test() {
return (
<ScrollView style={{ flexGrow: 1, backgroundColor: 'white' }}>
<View style={{ paddingTop: 200, height: 2000 }}>
<Pressable
style={{ width: 30, height: 30, backgroundColor: 'pink' }}
onPress={() => Alert.alert('pressed')}
/>
</View>
</ScrollView>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment