We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to see the tabBar hide/show with animation, instead of just render or not the component.
Tell us which versions you are using:
import { Actions } from "react-native-router-flux"; constructor(props) { super(props); this.state = { hideTabBar: false }; } toggleTabBar = () => { this.setState({ hideTabBar: !this.state.hideTabBar }, () => Actions.refresh({ hideTabBar: this.state.hideTabBar }) ); }; render() { return ( <MainLayout component="home" content={ <Content> <TouchableWithoutFeedback onPressIn={this.toggleTabBar}> ... </TouchableWithoutFeedback> </Content> }/> ); }
<RouterWithRedux getSceneStyle={() => ({ backgroundColor: "transparent" })}> <Scene key="root"> <Scene key="tabbar" tabs={true} tabBarPosition="bottom" tabBarComponent={FooterTabs} > <Scene key="home" title="Cartão" component={HomeView} hideNavBar={true} /> <Scene key="info" title="Informações" component={InfoView} hideNavBar={true} /> </Scene> </Scene> </RouterWithRedux>;
The text was updated successfully, but these errors were encountered:
It is not supported at this moment
Sorry, something went wrong.
No branches or pull requests
I would like to see the tabBar hide/show with animation, instead of just render or not the component.
Version
Tell us which versions you are using:
Steps to reproduce
The text was updated successfully, but these errors were encountered: