import this package:
npm i react-native-toast-message
then in app.js file
<>
...remaining navigation container and stack.screens
<Toast/>
</>
const showToast = () => {
Toast.show({
type: 'success',
text1: 'Product added to cart successfully👋'
});
}