Issue
useLatestCallback.default is not a function (it is undefined)
Due to these changes
// CHANGED - require() syntax
- const ImageBackground = require('react-native/Libraries/Image/ImageBackground');
- const ImageBackground = require('react-native/Libraries/Image/ImageBackground').default;
// Unchanged - import syntax
import ImageBackground from 'react-native/Libraries/Image/ImageBackground';
// RECOMMENDED - root import
import {ImageBackground} from 'react-native';
Your Environment
| software |
version |
| react-native |
0.79.1 |
| react-native-paper |
5.13.1 |
Issue
useLatestCallback.default is not a function (it is undefined)
Due to these changes
// CHANGED - require() syntax
// Unchanged - import syntax
import ImageBackground from 'react-native/Libraries/Image/ImageBackground';
// RECOMMENDED - root import
import {ImageBackground} from 'react-native';
Your Environment