Created
July 11, 2025 09:53
-
-
Save gigobyte/5d1d0bf9e5f188f6590210a21fc6eb3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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