Skip to content
New issue

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

Refresh the component on every tab change #1175

Open
yogendrajs opened this issue May 30, 2022 · 1 comment
Open

Refresh the component on every tab change #1175

yogendrajs opened this issue May 30, 2022 · 1 comment

Comments

@yogendrajs
Copy link

I want to know if there's a way to refresh the component on every tab change because componentDidMount doesn't re-invoke when we return to the rendered/previous tab (as it's already in the stack)

@devoren
Copy link

devoren commented Jul 5, 2022

Try something like this:

`const [tabIndex, setTabIndex] = useState(0);
const [isRefreshing, setIsRefreshing] = useState(false);

React.useEffect(() => {
setIsRefreshing(true)
after fetching data
setIsRefreshing(false)
}, [tabIndex]);

<ScrollableTabView ...
onChangeTab={(value) => {
setTabIndex(value.i);
}}
...`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants