redberry
redberry

Reputation: 766

Button inside react-native-webview

I am trying to implement functionality which allows user to press on an image, that is part of an html which is opened with webview in react-native and then the image will be zoomed. What would be the best way to achieve this functionality?

Upvotes: 1

Views: 939

Answers (1)

Lucas Gabriel
Lucas Gabriel

Reputation: 61

This property injectedjavascript should help you. You can inject your own js code, with this prop you can programmatically, add the onclick function to your image.

Upvotes: 2

Related Questions