AlertDialog effectively interrupts a user's flow and prompts them to take a specific action. It's commonly used for mandatory confirmations or call-to-actions.
To install the component, run the following command in your terminal. This will add the component to your project's dependencies and allow you to use it in your project.
npx gluestack-ui@latest add alert-dialog
Default styling of all these components can be found in the components/core/Default styling of all these components can be found in the components/core/alert-dialog file. For reference, you can view the source code of the styled AlertDialog components.
// import the styles
import {
Root,
Content,
CloseButton,
Header,
Footer,
Body,
Backdrop,
} from '../components/core/alert-dialog/styled-components';
// import the createAlertDialog function
import { createAlertDialog } from '@gluestack-ui/alert-dialog';
// Understanding the API
const AlertDialog = createAlertDialog({
Root,
Content,
CloseButton,
Header,
Footer,
Body,
Backdrop,
});
// Using the alert-dialog component
export default () => (
<AlertDialog>
<AlertDialogBackdrop />
<AlertDialogContent>
<AlertDialogHeader>
<Heading>Confirm your request</Heading>
<AlertDialogCloseButton>
<CloseIcon />
</AlertDialogCloseButton>
</AlertDialogHeader>
<AlertDialogBody>
<Text>AlertDialog Body</Text>
</AlertDialogBody>
<AlertDialogFooter>
<Button>
<ButtonText></ButtonText>
</Button>
<Button>
<ButtonText></ButtonText>
</Button>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
);
More guides on how to get started are available here.