We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b487460 commit c7e6da1Copy full SHA for c7e6da1
1 file changed
package/src/Slider.tsx
@@ -233,7 +233,7 @@ const SliderComponent = (
233
const defaultStyle =
234
Platform.OS === 'ios' ? styles.defaultSlideriOS : styles.defaultSlider;
235
const sliderStyle = {zIndex: 1, width: width};
236
- const style = [props.style, defaultStyle];
+ const style = [defaultStyle, props.style];
237
238
const onValueChangeEvent = (event: Event) => {
239
onValueChange && onValueChange(event.nativeEvent.value);
0 commit comments