GithubHelp home page GithubHelp logo

Comments (4)

sudharsan1988 avatar sudharsan1988 commented on May 24, 2024 1

Just checked, I missed something in . Now it works great. Thank you

from ex-navigator.

yukunwu avatar yukunwu commented on May 24, 2024

@ide in this issue , you provide an approach to use the IOS style navigator in android.

<Navigator.NavigationBar
  navigationStyles={Navigator.NavigationBar.StylesIOS}
/>

or

<Navigator.NavigationBar
  transitionStyles={Navigator.NavigationBar.TransitionStylesIOS}
/>

I try this, but it doesn't work.Go through the source code int NavigatorNavigationBar.js ,I only see the style code

statics: {
    Styles: NavigatorNavigationBarStyles,
    StylesAndroid: NavigatorNavigationBarStylesAndroid,
    StylesIOS: NavigatorNavigationBarStylesIOS,
}

How to make this work?

Thanks.

from ex-navigator.

yukunwu avatar yukunwu commented on May 24, 2024

Finally, I implement the renderNavigationBar method, and render a given NavigationBar and set the navigationStyles to Navigator.NavigationBar.StylesIOS,and now it is in IOS style.

render() {
    return (
        <ExNavigator
            navigationBarStyle={styles.navigationBarStyle}
            titleStyle={styles.titleStyle}
            tintColor = { navbar_tint_color }
            barButtonTextStyle={styles.barButtonTextStyle}
            barButtonIconStyle={styles.barButtonIconStyle}
            renderNavigationBar={this._renderNavigationBar.bind(this) }
            sceneStyle={styles.barSceneStyle}
            initialRoute={BaseRouter.getDashboardRoute() }/>
    );
}
_renderNavigationBar(param) {
    let navigationStyles = Navigator.NavigationBar.StylesIOS;
    return (<Navigator.NavigationBar
        routeMapper={param.routeMapper}
        style = {param.style}
        navigationStyles={navigationStyles}/>);
}

Something like this.

image

But it is not perfect,the title and the buttons is not center vertical ,on the top ,there is 20px height of statusbar,and currently we cannot impact the Navigator.NavigationBar.StylesIOS whith a given props,but we can rewrite the Navigator.NavigationBar.StylesIOS.js file and fix it.

from ex-navigator.

sudharsan1988 avatar sudharsan1988 commented on May 24, 2024

It works but content seems to be blank in my end. Are you able to see the main content?

from ex-navigator.

Related Issues (20)

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.