Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into patch-1
  • Loading branch information
BartoszKlonowski authored Jan 14, 2026
commit 3ee77ad9bef6890a80fcd5e5cae796ad98691b7c
2 changes: 1 addition & 1 deletion package/src/Slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ const SliderComponent = (
const defaultStyle =
Platform.OS === 'ios' ? styles.defaultSlideriOS : styles.defaultSlider;
const sliderStyle = {zIndex: 1, ...(width !== 0 && {width})};
const style = StyleSheet.compose(props.style, defaultStyle);
const style = [defaultStyle, props.style];

const onValueChangeEvent = (event: Event) => {
onValueChange && onValueChange(event.nativeEvent.value);
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.