Skip to content

Instantly share code, notes, and snippets.

@gigobyte
Created July 11, 2025 10:13
Show Gist options
  • Select an option

  • Save gigobyte/46790a144ceb6ec66609c732a6c103b8 to your computer and use it in GitHub Desktop.

Select an option

Save gigobyte/46790a144ceb6ec66609c732a6c103b8 to your computer and use it in GitHub Desktop.
function Test() {
return (
<>
<View>
<Pressable
testID="good"
style={(state) => ({
marginTop: 100,
width: 50,
height: 50,
backgroundColor: state.pressed ? 'red' : 'pink',
})}
onPress={() => {}}
/>
</View>
<ScrollView>
<Pressable
testID="bad"
style={(state) => ({
marginTop: 100,
width: 50,
height: 50,
backgroundColor: state.pressed ? 'red' : 'pink',
})}
onPress={() => {}}
/>
</ScrollView>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment