Kazuki Kimoto
Kazuki Kimoto

Reputation: 79

how to make slidebar in react native?

Im trying to make a music app by react-native. and I'm trying to make sound volume slide bar. and I just could not find any code source how to make one. It would be great if any one know how to make one. I wanna make something similar that I attached image in below.

slidebar

Upvotes: 0

Views: 779

Answers (1)

Nakib
Nakib

Reputation: 4703

The component you are looking for is called Slider in react native. It is provided by react-native library. You can import it and start using like this:

import { Slider } from 'react-native'

Upvotes: 1

Related Questions