Code Monkey home page Code Monkey logo

Comments (10)

sodik82 avatar sodik82 commented on June 7, 2024 1

you can use it now via sliderComponent props in 0.5.0

from react-native-color-picker.

fritzfr avatar fritzfr commented on June 7, 2024

@sodik82 I am still getting a warning, even when I do provide this prop.
Screenshot 2020-02-05 at 12 58 08

My Code:

import { ColorPicker, toHsv, fromHsv } from 'react-native-color-picker';
import Slider from '@react-native-community/slider';
// ...

<ColorPicker
	sliderComponent={Slider}
	color={headColor}
	style={{ flex: 1 }} />

from react-native-color-picker.

sodik82 avatar sodik82 commented on June 7, 2024

can you try with 0.5.1?

from react-native-color-picker.

fritzfr avatar fritzfr commented on June 7, 2024

@sodik82 Yip, worked. Thanks!

from react-native-color-picker.

fritzfr avatar fritzfr commented on June 7, 2024

@sodik82 Actually I have to reopen, the issue still persists. It was only gone shortly but the warning is back on every reload of my app. Same stack trace as above.

from react-native-color-picker.

ridzwanari avatar ridzwanari commented on June 7, 2024

same goes to me .. but when using trianglecolerpicker the error do not pop out when everytime I reload the app

@sodik82 Actually I have to reopen, the issue still persists. It was only gone shortly but the warning is back on every reload of my app. Same stack trace as above.

from react-native-color-picker.

oleksii-jointoit avatar oleksii-jointoit commented on June 7, 2024

you can use it now via sliderComponent props in 0.5.0

Thanks, I added

import Slider from '@react-native-community/slider';
<ColorPicker
sliderComponent={Slider}
..
/>

and it works

from react-native-color-picker.

Jake-Mulhern avatar Jake-Mulhern commented on June 7, 2024

I made a post earlier saying that I had figured out how to add the react-native-community slider and then set the color on it by providing this as the sliderComponent

const renderSliderComponent = () => {
    return (
      <View>
        <Slider 
          minimumTrackTintColor={theme.colors.medium}
        />
      </View>
    )
  }

However, I realized that providing it this way changes the color of the slider but then the sliders stop working. Is there any props that I can add that would make it so that the sliders still work?

from react-native-color-picker.

sodik82 avatar sodik82 commented on June 7, 2024

@Jake-Mulhern - you need to pass prop to the slider so that it can work

(props) => .... <Slider {...props} color="yellow"/>

from react-native-color-picker.

Jake-Mulhern avatar Jake-Mulhern commented on June 7, 2024

you need to pass prop to the slider so that it can work

(props) => .... <Slider {...props} color="yellow"/>

@sodik82 when I pass {...props} in to the component it breaks the sliders. They are just stuck in the same location and won't move even if I don't pass the minimumTrackTintColor in as another prop.

When I log the props being passed in I get this.

{
  "onValueChange": [Function bound ],
  "value": 1,
}
Object {
  "onValueChange": [Function bound ],
  "value": 0.4823529411764706,
}

from react-native-color-picker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.