react-native-slider
react-native-slider copied to clipboard
React Native component exposing Slider from iOS and SeekBar from Android
``` import * as React from 'react'; import * as ReactNative from 'react-native'; type Constructor = new (...args: any[]) => T; type SliderReferenceType = | (React.MutableRefObject & React.LegacyRef) | undefined;...
``` Could not determine the dependencies of task ':react-native-community_slider:bundleLibCompileToJarDebug'. > Could not create task ':react-native-community_slider:compileDebugJavaWithJavac'. > In order to compile Java 9+ source, please set compileSdkVersion to 30 or above...
react-native-web has deprecated `StyleSheet.compose()` https://github.com/necolas/react-native-web/releases#:~:text=%5Bchange%5D%20Deprecate%20StyleSheet.compose().%20Use%20style%20array%20syntax. I saw that a previous PR (#563) removed usage of `compose()` for this deprecation, but a subsequent PR (#555) re-added the usage of `compose()`. We...
Summary: --------- Test Plan: ----------
Here's the commit that fixes the issue with default vs custom values of min, max and default step: ```diff bartoszklonowski@INV-0029 package % git show 5af5333 commit 5af53339d4caa4e4e38204c37e543cf6686507b2 (HEAD -> fix/581/default-min-max-step-values,...
## Environment * react-native info output: ``` System: OS: Linux 6.5 Ubuntu 22.04.4 LTS 22.04.4 LTS (Jammy Jellyfish) CPU: (16) x64 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz Memory: 20.15...
## Ask your Question i have requirement to render custom component with dynamic value above the thumb like this  I took a look at the [code](https://github.com/callstack/react-native-slider/blob/main/package/src/components/TrackMark.tsx) and there is...
Invariant Violation: View config getter callback for component `RNCSlider` must be a function (received `undefined`) I am facing below issue while trying to integrating into React Native application `Invariant Violation:...
### 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...
I am using this library with react native video. Is there any way to show secondary progress which indicates loaded duration of video? If this is possible how to do...