skip to Main Content

Currently, I am getting the integer value I want in the float value. how to achieve it in react-native-animated-ruler.

expo : code link

enter image description here

enter image description here

2

Answers


  1. try to add (value).toFixed(2) to your code.

    Login or Signup to reply.
  2. in library at line 184

    this.setState({
              value: Math.round(value / this.snapSegment) + minimum
            });
    

    so you have to change this in package code.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search