react-native-slider
react-native-slider copied to clipboard
Fix flicker issue on re-render in web implementation of Slider component
Description
This PR addresses an issue with the Slider component where a flicker effect is visible during re-renders, specifically in the web implementation. The flicker was caused by the width being reset during the layout calculation.
Changes Made
- Modified
sliderStyleto set thewidthonly if it is not zero using the conditional spread operator.const sliderStyle = { zIndex: 1, ...(width !== 0 && { width }) };