Giter Site home page Giter Site logo

Comments (12)

caner219 avatar caner219 commented on May 24, 2024

1708333166028

from react-native-awesome-slider.

alantoa avatar alantoa commented on May 24, 2024

Can you please follow the example and give it a try?

export const Example = () => {
  const progress = useSharedValue(30);
  const min = useSharedValue(0);
  const max = useSharedValue(100);
  return (
    <Slider
      style={styles.container}
      progress={progress}
      minimumValue={min}
      maximumValue={max}
    />
  );
};

from react-native-awesome-slider.

caner219 avatar caner219 commented on May 24, 2024

I made the changes as you suggested, but the progress bar's progress is still not refreshing. The printed value of "progressValue called with = " is changing, but the progress bar itself is still not changing.
截屏2024-02-21 上午9 50 55

from react-native-awesome-slider.

alantoa avatar alantoa commented on May 24, 2024

but the progress bar's progress is still not refreshing.

Are you saying that you have already dragged the thumb, but the slider did not change at all?

from react-native-awesome-slider.

caner219 avatar caner219 commented on May 24, 2024

When I manually drag the progress bar, that works fine. The problem is when I get the data from the server and then go to set the progress value, the progress value changes but the progress bar UI does not refresh, it stays at the initial value it was set to.

from react-native-awesome-slider.

amalpsojancodiac avatar amalpsojancodiac commented on May 24, 2024

maybe this will help you :)

export const Example = () => {
const progress = useSharedValue(30);
 const min = useSharedValue(0);
 const max = useSharedValue(100);
  return (
    <Slider
      style={styles.container}
      progress={progress}
      minimumValue={min}
      maximumValue={max}
      cache={progress}
    />
  );
};

from react-native-awesome-slider.

caner219 avatar caner219 commented on May 24, 2024

Hi,I made the modifications as you instructed, but the UI of progress still has not refreshed.

from react-native-awesome-slider.

caner219 avatar caner219 commented on May 24, 2024

截屏2024-02-26 下午4 44 53
截屏2024-02-26 下午4 45 10

from react-native-awesome-slider.

manuelxaguilar avatar manuelxaguilar commented on May 24, 2024

@caner219 Any luck with this?

from react-native-awesome-slider.

TikshaK avatar TikshaK commented on May 24, 2024

I am facing the same issue.... anyone found the solution?

from react-native-awesome-slider.

alantoa avatar alantoa commented on May 24, 2024

@caner219, doesn't it work for you if you set the progress SharedValue? Typically, if you only want to change the progress value, you can simply do progress.value = number;.

from react-native-awesome-slider.

domalouf avatar domalouf commented on May 24, 2024

I had a similar issue when trying to use the Slider inside a modal. I couldn't get the progress spot to change based on parameters passed into the modal. I think it has something to do with useSharedValue variables updating asynchronously.

Here is a link to the documentation (the first code block under remarks is where the problem comes from I think), https://docs.swmansion.com/react-native-reanimated/docs/core/useSharedValue/

from react-native-awesome-slider.

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.