Skip to content

Slide animation won't work when component is controlled with selectedIndex #302

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

Open
guytepper opened this issue Jun 11, 2021 · 6 comments

Comments

@guytepper
Copy link

Hi there! Thanks for the great library :)
When I'm controlling the component by changing the selectedIndex dynamically, the sliding animation doesn't work:

const [selectedIndex, setSelectedIndex] = useState(0)

return (
  <SegmentedControl
     values={[0, 1]}
     selectedIndex={selectedIndex}
     onChange={(event) => setSelectedIndex(event.nativeEvent.selectedSegmentIndex}}
 />
)

You can see the actual code I've been using here, and the video below for the result.

Simulator.Screen.Recording.-.iPhone.11.-.2021-06-11.at.13.42.54.mp4
@guytepper guytepper changed the title Slide won't work when component is controlled with selectedIndex Slide animation won't work when component is controlled with selectedIndex Jun 11, 2021
@WrathChaos
Copy link

Actually, the problem is the version of 2.4.0, simply downgraded to 2.3.0 and everything works great!

I hope they will resolve the animation problem.

@guytepper
Copy link
Author

2.3.0 is the installed version in the video I've attached. Does the animation work for you in a controlled component?

@arunim2405
Copy link

Any updates on this issue?

@CodingByJerez
Copy link

CodingByJerez commented Jun 25, 2022

Problem still present :(
In the meantime to work around the problem I use the non-native version
(On the other hand, we lose the sliding animation)

import SegmentedControld from '@react-native-segmented-control/segmented-control/js/SegmentedControl.js';

@selimjouan
Copy link

One workaround is to set a timeout before state change:

const [selectedIndex, setSelectedIndex] = useState(0);

return (
  <SegmentedControl
    values={[0, 1]}
    selectedIndex={selectedIndex}
    onChange={(event) => {
      const index = event.nativeEvent.selectedSegmentIndex;
      setTimeout(() => {
        setSelectedIndex(index);
      }, 200);
    }}
  />
)

@WrathChaos
Copy link

It seems this library is not actively maintained anymore.

I made a segmented control with pure javascript. It does not require any native linking.

https://github.com/WrathChaos/react-native-segmented-control-2

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

5 participants