私は両方onPress
をoccuredTouchableOpacity
にしようとしていますが、2番目のものだけが発火します:
<TouchableOpacity onPress={() => console.warn('first button')}>
<TouchableOpacity onPress={() => console.warn('second button')}>
<Text>
PRESS ME
</Text>
</TouchableOpacity>
</TouchableOpacity>
両方を発火させるにはどうすればよいですか?
前もって感謝します!