#I want to create this kind of progress bar

2 messages · Page 1 of 1 (latest)

prime apex
#

I need to use react native to implement this, I would like to create it from scratch without using package.

There is a purple color of circle dot on the progress bar, is there any article for tutorial purpose has already told people how to do this?

past jungle
#

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"*/
}```