(0, _reactNavigation.withOrientation) is not a function error
I 'm working with a React native app and tried to add a new component from other project.
I'm facing this issue, anybody got an idea?
package.json
"react-navigation": "1.0.0-beta.9"
render function on main component
render() {
return (
<StyleProvider
style={getTheme(
this.props.themeState === "material" ? material : undefined
)}
>
<Drawer
ref={ref => {
this._drawer = ref;
}}
open={this.props.drawerState === "opened"}
type="overlay"
tweenDuration={150}
content={<SideBar />}
tapToClose
acceptPan={false}
onClose={() => this.props.closeDrawer()}
openDrawerOffset={0.3}
panCloseMask={0.2}
styles={{
drawer: {
shadowColor: "#000000",
shadowOpacity: 0.8,
shadowRadius: 3
}
}}
tweenHandler={ratio => {
return {
drawer: { shadowRadius: ratio < 0.2 ? ratio * 5 * 5 : 5 },
main: {
opacity: (2 - ratio) / 2
}
};
}}
negotiatePan
>
<MyRouter />
</Drawer>
</StyleProvider>
);
}
reactjs react-native react-navigation
add a comment |
I 'm working with a React native app and tried to add a new component from other project.
I'm facing this issue, anybody got an idea?
package.json
"react-navigation": "1.0.0-beta.9"
render function on main component
render() {
return (
<StyleProvider
style={getTheme(
this.props.themeState === "material" ? material : undefined
)}
>
<Drawer
ref={ref => {
this._drawer = ref;
}}
open={this.props.drawerState === "opened"}
type="overlay"
tweenDuration={150}
content={<SideBar />}
tapToClose
acceptPan={false}
onClose={() => this.props.closeDrawer()}
openDrawerOffset={0.3}
panCloseMask={0.2}
styles={{
drawer: {
shadowColor: "#000000",
shadowOpacity: 0.8,
shadowRadius: 3
}
}}
tweenHandler={ratio => {
return {
drawer: { shadowRadius: ratio < 0.2 ? ratio * 5 * 5 : 5 },
main: {
opacity: (2 - ratio) / 2
}
};
}}
negotiatePan
>
<MyRouter />
</Drawer>
</StyleProvider>
);
}
reactjs react-native react-navigation
1
which version of react navigation do you have installed? could you please share the code too?
– Helmer Barcos
Nov 22 at 18:37
Thanks, @HelmerBarcos. I added some information.
– Phoenix
Nov 22 at 18:57
the error is associated with the method withOrientation from react-navigation. but in the code you shared, i dont see any line of code that refers to it.
– Helmer Barcos
Nov 22 at 20:12
I didn't use such functions in react-navigation, and not enough documentation with it as well.
– Phoenix
Nov 23 at 2:07
add a comment |
I 'm working with a React native app and tried to add a new component from other project.
I'm facing this issue, anybody got an idea?
package.json
"react-navigation": "1.0.0-beta.9"
render function on main component
render() {
return (
<StyleProvider
style={getTheme(
this.props.themeState === "material" ? material : undefined
)}
>
<Drawer
ref={ref => {
this._drawer = ref;
}}
open={this.props.drawerState === "opened"}
type="overlay"
tweenDuration={150}
content={<SideBar />}
tapToClose
acceptPan={false}
onClose={() => this.props.closeDrawer()}
openDrawerOffset={0.3}
panCloseMask={0.2}
styles={{
drawer: {
shadowColor: "#000000",
shadowOpacity: 0.8,
shadowRadius: 3
}
}}
tweenHandler={ratio => {
return {
drawer: { shadowRadius: ratio < 0.2 ? ratio * 5 * 5 : 5 },
main: {
opacity: (2 - ratio) / 2
}
};
}}
negotiatePan
>
<MyRouter />
</Drawer>
</StyleProvider>
);
}
reactjs react-native react-navigation
I 'm working with a React native app and tried to add a new component from other project.
I'm facing this issue, anybody got an idea?
package.json
"react-navigation": "1.0.0-beta.9"
render function on main component
render() {
return (
<StyleProvider
style={getTheme(
this.props.themeState === "material" ? material : undefined
)}
>
<Drawer
ref={ref => {
this._drawer = ref;
}}
open={this.props.drawerState === "opened"}
type="overlay"
tweenDuration={150}
content={<SideBar />}
tapToClose
acceptPan={false}
onClose={() => this.props.closeDrawer()}
openDrawerOffset={0.3}
panCloseMask={0.2}
styles={{
drawer: {
shadowColor: "#000000",
shadowOpacity: 0.8,
shadowRadius: 3
}
}}
tweenHandler={ratio => {
return {
drawer: { shadowRadius: ratio < 0.2 ? ratio * 5 * 5 : 5 },
main: {
opacity: (2 - ratio) / 2
}
};
}}
negotiatePan
>
<MyRouter />
</Drawer>
</StyleProvider>
);
}
reactjs react-native react-navigation
reactjs react-native react-navigation
edited Nov 22 at 18:57
asked Nov 22 at 18:23
Phoenix
71621533
71621533
1
which version of react navigation do you have installed? could you please share the code too?
– Helmer Barcos
Nov 22 at 18:37
Thanks, @HelmerBarcos. I added some information.
– Phoenix
Nov 22 at 18:57
the error is associated with the method withOrientation from react-navigation. but in the code you shared, i dont see any line of code that refers to it.
– Helmer Barcos
Nov 22 at 20:12
I didn't use such functions in react-navigation, and not enough documentation with it as well.
– Phoenix
Nov 23 at 2:07
add a comment |
1
which version of react navigation do you have installed? could you please share the code too?
– Helmer Barcos
Nov 22 at 18:37
Thanks, @HelmerBarcos. I added some information.
– Phoenix
Nov 22 at 18:57
the error is associated with the method withOrientation from react-navigation. but in the code you shared, i dont see any line of code that refers to it.
– Helmer Barcos
Nov 22 at 20:12
I didn't use such functions in react-navigation, and not enough documentation with it as well.
– Phoenix
Nov 23 at 2:07
1
1
which version of react navigation do you have installed? could you please share the code too?
– Helmer Barcos
Nov 22 at 18:37
which version of react navigation do you have installed? could you please share the code too?
– Helmer Barcos
Nov 22 at 18:37
Thanks, @HelmerBarcos. I added some information.
– Phoenix
Nov 22 at 18:57
Thanks, @HelmerBarcos. I added some information.
– Phoenix
Nov 22 at 18:57
the error is associated with the method withOrientation from react-navigation. but in the code you shared, i dont see any line of code that refers to it.
– Helmer Barcos
Nov 22 at 20:12
the error is associated with the method withOrientation from react-navigation. but in the code you shared, i dont see any line of code that refers to it.
– Helmer Barcos
Nov 22 at 20:12
I didn't use such functions in react-navigation, and not enough documentation with it as well.
– Phoenix
Nov 23 at 2:07
I didn't use such functions in react-navigation, and not enough documentation with it as well.
– Phoenix
Nov 23 at 2:07
add a comment |
1 Answer
1
active
oldest
votes
I resolved it by using yarn instead of npm.
https://github.com/aksonov/react-native-router-flux/issues/3216#issuecomment-418680074
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436425%2f0-reactnavigation-withorientation-is-not-a-function-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I resolved it by using yarn instead of npm.
https://github.com/aksonov/react-native-router-flux/issues/3216#issuecomment-418680074
add a comment |
I resolved it by using yarn instead of npm.
https://github.com/aksonov/react-native-router-flux/issues/3216#issuecomment-418680074
add a comment |
I resolved it by using yarn instead of npm.
https://github.com/aksonov/react-native-router-flux/issues/3216#issuecomment-418680074
I resolved it by using yarn instead of npm.
https://github.com/aksonov/react-native-router-flux/issues/3216#issuecomment-418680074
answered Nov 23 at 3:48
Phoenix
71621533
71621533
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436425%2f0-reactnavigation-withorientation-is-not-a-function-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
which version of react navigation do you have installed? could you please share the code too?
– Helmer Barcos
Nov 22 at 18:37
Thanks, @HelmerBarcos. I added some information.
– Phoenix
Nov 22 at 18:57
the error is associated with the method withOrientation from react-navigation. but in the code you shared, i dont see any line of code that refers to it.
– Helmer Barcos
Nov 22 at 20:12
I didn't use such functions in react-navigation, and not enough documentation with it as well.
– Phoenix
Nov 23 at 2:07