We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5201e5 + 90a8b21 commit d51ab27Copy full SHA for d51ab27
src/NavigatorNavigationBar.js
@@ -140,6 +140,9 @@ class NavigatorNavigationBar extends React.Component {
140
var component = this._components[componentName].get(this.props.navState.routeStack[index]);
141
var props = this._getReusableProps(componentName, index);
142
if (component && interpolate[componentName](props.style, amount)) {
143
+ if (Number.isFinite(props.style.left)) {
144
+ delete props.style.left;
145
+ }
146
props.pointerEvents = props.style.opacity === 0 ? 'none' : 'box-none';
147
component.setNativeProps(props);
148
}
0 commit comments