react-native-counters
react-native-counters copied to clipboard
how do i access the numbers on the counter?
What prop do I use to access the actual value of the counter? So for example I want to console.log '5' when the counter reads 5
did you ever figure this out? I have the same question
Same question here
Not sure is this what you're looking for, but i get the value by using this line
onChange={value => console.log(value)}
Hope it helps 😆