<Provider store={store}>
<WithSplashScreen>
<ToastProvider
// successIcon={<IconCheckCircle width={14} height={14} color="#27AE60" />}
renderType={{
custom_type: (toast) => (
<View style={{ padding: 15, backgroundColor: 'red' }}>
<Text>{toast.message}aaaa</Text>
</View>
)
}}
>
<GestureHandlerRootView style={{ flex: 1 }}>
....
Why my custom toast not working?