-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
Description
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 |
helderuni, nielsq and per-malmberg-83