Giter Club home page Giter Club logo

Comments (11)

irfaan avatar irfaan commented on June 4, 2024 4

Give ScrollableTabView a ref prop (e.g. ref="Tabs") and then use its reference to use ScrollableTabView's goToPage() (e.g. this.refs.Tabs.goToPage(1);)

See #16

from react-native-scrollable-tab-view.

JonathanWi avatar JonathanWi commented on June 4, 2024 1

Just stumbled on your issue and found a solution (a bit messy, but it works):

In the parent component (ScrollableTabView)

Like you did, add ref="Tabs" on the ScrollableTabView and add a tabsRef on each slides

<ScrollableTabView activeTab={1} ref="Tabs">
      <Profile tabsRef={this.state.tabsRef} tabLabel="a" />
      <Feed tabsRef={this.state.tabsRef} tabLabel="b" />
      <Settings tabsRef={this.state.tabsRef} tabLabel="c" />
</ScrollableTabView>

We could try to pass {this.refs.Tabs} instead of {this.state.tabsRef}; Unfortunately, it appears that ref is set after componentDidMount is called. What we need to do is declare:

getInitialState: function(){
  return {
    tabsRef : {} // At this point we don't have access to the ref
  }
},
componentDidMount: function(){
  this.setState({tabsRef : this.refs.Tabs}); // The this.refs.Tabs is now defined, and passed to the components
}

In the child component

We have now access to this.props.tabsRef and thus can call this.props.tabsRef.goToPage(1)

Hope this helps, it works for me!

from react-native-scrollable-tab-view.

psbanka avatar psbanka commented on June 4, 2024

This would definitely be a nice feature 👍

from react-native-scrollable-tab-view.

piyushchauhan2011 avatar piyushchauhan2011 commented on June 4, 2024

👍

from react-native-scrollable-tab-view.

albertwchang avatar albertwchang commented on June 4, 2024

I've come up with a quick-fix solution. Will post soon. Probably not elegant but at least it's working. It involves passing the goToPage function (from the custom tab bar) to the parent component, and then having this parent component assign the goToPage to a state variable. This variable would then be pased in as props to each of the child component pages.

Example: https://github.com/achang28/TabView-RN

from react-native-scrollable-tab-view.

brentvatne avatar brentvatne commented on June 4, 2024

what @irfaan said ;)

from react-native-scrollable-tab-view.

dannyprice1990 avatar dannyprice1990 commented on June 4, 2024

I still can't get this to work unfortunately, can you provide a full example?

Thanks

from react-native-scrollable-tab-view.

irfaan avatar irfaan commented on June 4, 2024

@dannyprice1990 Can you share the pertinent pieces of your application in a gist or put something up on http://rnplay.org?

from react-native-scrollable-tab-view.

dannyprice1990 avatar dannyprice1990 commented on June 4, 2024

Hey bud, I'm trying to change the tab using a button within the Ready2WorkComponent. Am I going about this in the wrong way?

capture

From within component:
capture

Thanks for your help

from react-native-scrollable-tab-view.

irfaan avatar irfaan commented on June 4, 2024

this is likely referencing your Ready2WorkComponent. Not sure how to make reference to something outside of it.

@brentvatne, this is beyond the scope of your package, but do you know how to achieve this?

from react-native-scrollable-tab-view.

BalalRaza avatar BalalRaza commented on June 4, 2024

@irfaan @brentvatne Alongside goToPage(), can we also pass some props to the target page?

from react-native-scrollable-tab-view.

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.