-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
Adesh Pandey edited this page Jan 17, 2023
·
2 revisions
Add below in your App.jsx\App.tsx
<RNFancyAlert />
then from any function whenever you want to show the alert do something like:
RNFancyAlert.alert({
title: "Delete",
subtitle: "Are you sure you want to delete this?",
buttons:[{
title: "Yes",
type:"error",
onPress: () => {}
},{
title:"No",
role:"cancel"
}]})