@gluestack-ui/alert-dialog
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.
Installation
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
Usage
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 {
Root,
Content,
CloseButton,
Header,
Footer,
Body,
Backdrop,
} from '../components/core/alert-dialog/styled-components';
import { createAlertDialog } from '@gluestack-ui/alert-dialog';
const AlertDialog = createAlertDialog({
Root,
Content,
CloseButton,
Header,
Footer,
Body,
Backdrop,
});
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.