What is the equivalent for linearLayout.setClickable(true);
(Android) in React Native below :
<View style={{ flexDirection: 'row', }} ><Text>Hello World!<Text /><View />
I would like to make the <View />
container / wrapper clickable.
Thank you all.