alinz / react-native-webview-bridge

React Native Webview with Javascript Bridge
MIT License
1.37k stars 493 forks source link

Is this repo officially inactive ? #301

Open adkaushik opened 4 years ago

adkaushik commented 4 years ago

In react native version 0.60, this library does not seem to work, since react native moved webview from the core in to a separate repo.

Are there any plans to upgrade this library aswell?

fungilation commented 4 years ago

Move on and migrate to https://github.com/react-native-community/react-native-webview, I have. It has all functionality this library has, + WKWebView on iOS for performance and more. And far more actively developed

ahmadalfy commented 4 years ago

@fungilation seem that it's fully compatible except for the method onBridgeMessage should be replaced with onMessage.

aneena-thomas commented 2 years ago

@ahmadalfy How to get data from a form if I submit a form offline in react-native-webview. Because webviewbridge return some response offline but does not get any response from react-native-webview.

And when I this library I have one script like this, export default function submissionScript(formId, previousResponseId = 'none', previousResponseCreated = 'none') {

let string = ``;

return string;

}

So this will return the response offline.

ahmadalfy commented 2 years ago

@aneena-thomas sorry, no clue