I am very new to react native. I have a view which is having a text containing a url. I want to make the outer view accessible and then when the user swipes right it should focus on the url/link as we do in iOS. For me when I make the outer view accessible={true} the inner elements will be non accessible. And also I am not able to find out much content regarding the same. Can anyone give an insight on this.
<View><Text>Some text</Text><View>
<View><Text>Text with url</Text></View>
</View>
As I mentioned above I want both outer and inner views accessible. It works fine in android but not in iOS.Any help is appreciated.