Getting yellow light color on AR model in React Native AR application, I am using - react-native-ar-viewer
The actual color of the model is white but getting a light yellow color model
code
import {ArViewerView} from 'react-native-ar-viewer';
<ArViewerView
model={localModelPath}
style={styles.arView}
disableInstantPlacement
manageDepth={true}
allowRotate={true}
allowScale={true}
allowTranslate
lightEstimation
onStarted={() => console.log('started')}
onEnded={() => console.log('ended')}
onModelPlaced={() => console.log('model displayed')}
onModelRemoved={() => console.log('model not visible anymore')}
planeOrientation={'both'}
ref={ref}
/>