<Modal transparent={false} animationType={"slide"} visible={this.props.isVisible}>
<WebView
source={this.getLandingUri()}
scrollEnabled={true}
startInLoadingState={true}
onLoad={this.getLoadingIndicator}
onNavigationStateChange={this.onNavigationStateChange}
/>
</Modal>
I have been using a react.native WebView to prompt the user a login page, and now I would like to add a navigation / status bar that provides the user with a "Done" button, plus the current domain.
Here are two screenshots showing what I currently have (l) and what I would like to have (r).
I couldn't find any relevant props on the WebView for rendering a status bar. Is this possible at all?