import React from 'react'; import { View, StyleSheet, Text } from 'react-native'; import { Theme, useThemedStyles } from '../theme'; const Unmounted = () => { const styles = useThemedStyles(themedStyles); return ( Unmounted Error It looks like the network logger hasn’t been enabled yet. This is likely due to you running another debugging tool that is also intercepting network requests. Either disable that or start the network logger with the option:{' '} "forceEnable: true". ); }; const themedStyles = (theme: Theme) => StyleSheet.create({ container: { padding: 15, }, heading: { color: theme.colors.text, fontWeight: '600', fontSize: 25, marginBottom: 10, }, body: { color: theme.colors.text, marginTop: 5, }, code: { color: theme.colors.muted, }, }); export default Unmounted;