How can I remove the arrows and the done button from the header?
I'm using WebView
library from react-native
render() {
return (
<View style={{ width: 500, height: 500, marginTop: 40 }}>
<WebView
ref="AddressSearchWebView"
source={{ html: HTML }}
javaScriptEnabledAndroid={true}
onMessage={(e) => {
var eventData = JSON.parse(e.nativeEvent.data);
this.props.onSearch(eventData);
}}
>
</WebView>
</View>
);
}
Pass hidekeyboardaccessoryview as a property to WebView
component.