react-custom-roulette
react-custom-roulette copied to clipboard
What is the way to add image in option?
By using react-roulette-pro you can easily set images for your items.
Hi @IvanAdmaers , Thanks! for suggesting react-roulette-pro. Is it possible to change to a wheel shape instead of a horizontal and vertical one?
Hi, @sonykashyap. Unfortunately it's not possible at this moment.
Hi @IvanAdmaers , Thanks! for suggesting react-roulette-pro. Is it possible to change to a wheel shape instead of a horizontal and vertical one?
@sonykashyap Thanks for your question! In version 1.3.2 we've added an image: ImageProps
option in the WheelData interface (for each item of the data
prop array). These are the available customization options:
interface ImageProps {
uri: string;
offsetX?: number; // Optional
offsetY?: number; // Optional
sizeMultiplier?: number; // Optional
landscape?: boolean; // Optional
}
The documentation is also updated.
Let me know if you have any questions about it, or if you find any issues/improvements. Thank you!