We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26d7255 commit 1224792Copy full SHA for 1224792
src/ReactNativeSlider.re
@@ -2,16 +2,16 @@
2
external make:
3
(
4
~style: ReactNative.Style.t=?,
5
- ~value: int=?,
6
- ~step: int=?,
7
- ~minimumValue: int=?,
8
- ~maximumValue: int=?,
+ ~value: float=?,
+ ~step: float=?,
+ ~minimumValue: float=?,
+ ~maximumValue: float=?,
9
~minimumTrackTintColor: string=?,
10
~maximumTrackTintColor: string=?,
11
~disabled: bool=?,
12
- ~onSlidingStart: int => unit=?,
13
- ~onSlidingComplete: int => unit=?,
14
- ~onValueChange: int => unit=?,
+ ~onSlidingStart: float => unit=?,
+ ~onSlidingComplete: float => unit=?,
+ ~onValueChange: float => unit=?,
15
~testID: string=?,
16
~children: React.element=?,
17
// iOS Props
0 commit comments