I've recently implemented dark mode into my app, but having an issue with an error when building the npm package with npm build
. The code works, but is there a way or a reason to remove this error?
Error
src/ContactActionSheet.tsx:3:10 - error TS2305: Module '"react-native"' has no exported member 'Appearance'.3 import { Appearance, Dimensions, StyleSheet, Text, View, Linking, TouchableOpacity } from 'react-native';
JSX
// Imports: Dependenciesimport { Appearance, Dimensions, StyleSheet, Text, View, Linking, TouchableOpacity } from 'react-native';// Dark Modeconst colorScheme = Appearance.getColorScheme();