Explorar el Código

pass state for onNavigationStateChange for ios

iou90 hace 6 años
padre
commit
d6521d5669
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      autoHeightWebView/index.ios.js

+ 1
- 1
autoHeightWebView/index.ios.js Ver fichero

@@ -113,7 +113,7 @@ export default class AutoHeightWebView extends PureComponent {
113 113
     const { title } = navState;
114 114
     const { onNavigationStateChange } = this.props;
115 115
     if (!title) {
116
-      onNavigationStateChange && onNavigationStateChange();
116
+      onNavigationStateChange && onNavigationStateChange(navState);
117 117
       return;
118 118
     }
119 119
     const [heightValue, widthValue] = title.split(',');