'Making Color Wheel less glitchy in React Native

Note: We are relatively new to react-native

As part of an animation project that my team is working on, we are creating an app where a user can color and customize their template using a color wheel before it is animated in real-time. While the current color wheel that we have coded works, there is an issue with the color wheel being glitchy during use. Is there a way that we could solve this problem and make the color wheel-less glitchy?

our code to create the color wheel is below:

import React from 'react';
import Picker from '../components/Picker';
import { Text } from 'react-native';

const ColorPickerScreen = () => {
  return <Picker/>
}

export default ColorPickerScreen;

Given that we are still new to React Native, we were not sure how to tackle this task (we are not quite sure why it is so glitchy), but the goal is to make the color wheel run smoothly.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source