#I want to create this kind of progress bar
2 messages · Page 1 of 1 (latest)
I'm not sure about react native, but in css you could style it with
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
border-radius: 50%;
/* other props for the "dot"*/
}```