Giter Site home page Giter Site logo

Comments (3)

injas427 avatar injas427 commented on August 18, 2024

@decarlomw Thanks for your query. I haven't tested it on react-native-router-flux it would be possible if you can use custom bottom tab in react-native-router-flux. i've tested it on react-navigation and it worked perfectly. If you could make it possible you can share the example here, it would be helpful to others

from react-native-fluidbottomnavigation.

decarlomw avatar decarlomw commented on August 18, 2024

react-native-router-flux just doesn't have the workings to support this navigation. I did get react-navigation to show the tab bar but I am having issues with getting the pages to render. If I do the createBootomTabNavigator and add tabBarComponent:Tabs how do I get the pages to render in fluidbottomnavigation? Currently I'm just outputting the index to the console.

from react-native-fluidbottomnavigation.

injas427 avatar injas427 commented on August 18, 2024
const TabComponent = props => <BottomtabBar {...props} /> //Bottomtabbar component is your bottom tab with fluidbottomnavigation

const bottomTab = createBottomTabNavigator({
    Tab1: Tab1Stack,
    Tab2: Tab2Stack,
    Tab3: Tab3Stack,
    Tab4: Tab4Stack
}, {
        tabBarComponent: props =>
            <TabComponent
                {...props}
            />,
        initialRouteName: "Tab1"

    })

const Routes = createAppContainer(bottomTab)
export default Routes

and in your bottom tab, onPress callback will return tabIndex

const { state } = props.navigation

props.jumpTo(state.routes[tabIndex].key)

Number of icons should be equal to number of tabs defined in createBottomTabNavigator

from react-native-fluidbottomnavigation.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.