-
Notifications
You must be signed in to change notification settings - Fork 274
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
onSlidingStart & onSlidingComplete & onValueChange were not called on tvbox (android) #226
Comments
Hello @algokano! |
Closing due to lack of author's response. |
@BartoszKlonowski I am still facing the same issue , discovered that |
Thank you for checking this, @ali-sao! |
@ali-sao One more thing I forgot to ask: What platform do you observe this on? Is it the TVBox you are using? |
@BartoszKlonowski, it is Skyworth certified Android STB. |
"@react-native-community/slider": "^3.0.3",
"react-native": "npm:[email protected]",
"react": "16.11.0"
my code:
<Slider
thumbTintColor={"red"}
style={{width: "100%", height: 40}}
value={value ? value : 0}
onSlidingComplete={(a)=>{
console.log("onSlidingComplete", a)
}}
onSlidingStart={(a)=>{
console.log("onSlidingStart", a)
}}
minimumValue={0}
maximumValue={100}
minimumTrackTintColor="#FFFFFF"
maximumTrackTintColor="#000000"
/>
The text was updated successfully, but these errors were encountered: