Skip to content

Commit 05874c5

Browse files
committed
# Conflicts: # .gitignore # lib/webview.js # package.json
2 parents 385edd0 + 8864c4b commit 05874c5

File tree

2 files changed

+66
-2
lines changed

2 files changed

+66
-2
lines changed

lib/webview.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { View, StyleSheet, Text } from 'react-native';
2+
import { View, StyleSheet } from 'react-native';
33
import WebView from 'react-native-webview';
44
import PropTypes from 'prop-types';
55
import LoadingBar from "./loading-bar";
@@ -13,7 +13,7 @@ export default class ProgressBarWebView extends React.PureComponent {
1313
render() {
1414
return (
1515
<View style={styles.container}>
16-
<LoadingBar />
16+
<LoadingBar/>
1717
<WebView {...this.props} />
1818
</View>
1919
);
@@ -23,5 +23,6 @@ export default class ProgressBarWebView extends React.PureComponent {
2323
const styles = StyleSheet.create({
2424
container: {
2525
flex: 1,
26+
position: 'relative',
2627
},
2728
});

package-lock.json

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)