I'm trying to implement pinlock but i'm facing this error, in android everything is okay.
this is my code
import React from 'react';
import { View } from 'react-native';
import PINCode from '@haskkor/react-native-pincode';
export function PinlockScreen() {
return (
<View>
<PINCode status="choose" />
</View>
);
}