React Modal - Flowbite
Use the modal component to show an interactive dialog to your website users that overlays the main content based on multiple sizes, layouts, and styles
The modal component can be used to show any type of content such as text, form elements, and notifications to your website visitors by creating an off-canvas box on top of the main content area of your website.
You can choose from multiple examples based on various styles, layouts, and elements inside the modal component and you can customize the behaviour, placement, and sizing using our custom React props and the utility classes from Tailwind CSS.
To get started with the modal component you first need to import it from Flowbite React:
import { Modal } from "flowbite-react";
#
Default modalUse the <Modal>
React component to show a dialog element to the user with a header, body, and footer where you can add any type of content such as text or form elements.
The visibility of the component can be set by passing a boolean value to the show
prop on the <Modal>
component and we recommend you to do this via the React state.
Using a openModal
and setOpenModal
state for the main React component should allow you to easily manage the state of the Modal component and use inline functions on event listeners such as onClick
or onClose
.
"use client";
import { Button, Modal } from "flowbite-react";
import { useState } from "react";
export function Component() {
const [openModal, setOpenModal] = useState(true);
return (
<>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
<Modal show={openModal} onClose={() => setOpenModal(false)}>
<Modal.Header>Terms of Service</Modal.Header>
<Modal.Body>
<div className="space-y-6">
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
With less than a month to go before the European Union enacts new consumer privacy laws for its citizens,
companies around the world are updating their terms of service agreements to comply.
</p>
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
The European Union’s General Data Protection Regulation (G.D.P.R.) goes into effect on May 25 and is meant
to ensure a common set of data rights in the European Union. It requires organizations to notify users as
soon as possible of high-risk data breaches that could personally affect them.
</p>
</div>
</Modal.Body>
<Modal.Footer>
<Button onClick={() => setOpenModal(false)}>I accept</Button>
<Button color="gray" onClick={() => setOpenModal(false)}>
Decline
</Button>
</Modal.Footer>
</Modal>
</>
);
}
#
Backdrop dismissibleTo enable the modal to be dismissed when clicking outside of the component (ie. the backdrop) then you can pass the dismissible
prop to the <Modal>
component from React.
"use client";
import { Button, Modal } from "flowbite-react";
import { useState } from "react";
export function Component() {
const [openModal, setOpenModal] = useState(true);
return (
<>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
<Modal dismissible show={openModal} onClose={() => setOpenModal(false)}>
<Modal.Header>Terms of Service</Modal.Header>
<Modal.Body>
<div className="space-y-6">
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
With less than a month to go before the European Union enacts new consumer privacy laws for its citizens,
companies around the world are updating their terms of service agreements to comply.
</p>
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
The European Union’s General Data Protection Regulation (G.D.P.R.) goes into effect on May 25 and is meant
to ensure a common set of data rights in the European Union. It requires organizations to notify users as
soon as possible of high-risk data breaches that could personally affect them.
</p>
</div>
</Modal.Body>
<Modal.Footer>
<Button onClick={() => setOpenModal(false)}>I accept</Button>
<Button color="gray" onClick={() => setOpenModal(false)}>
Decline
</Button>
</Modal.Footer>
</Modal>
</>
);
}
#
Pop-up modalUse this example by passing the popup
prop from React to the modal component to show a dialog to the user asking for a decision such as when confirming an item deletion from the database.
"use client";
import { Button, Modal } from "flowbite-react";
import { useState } from "react";
import { HiOutlineExclamationCircle } from "react-icons/hi";
export function Component() {
const [openModal, setOpenModal] = useState(true);
return (
<>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
<Modal show={openModal} size="md" onClose={() => setOpenModal(false)} popup>
<Modal.Header />
<Modal.Body>
<div className="text-center">
<HiOutlineExclamationCircle className="mx-auto mb-4 h-14 w-14 text-gray-400 dark:text-gray-200" />
<h3 className="mb-5 text-lg font-normal text-gray-500 dark:text-gray-400">
Are you sure you want to delete this product?
</h3>
<div className="flex justify-center gap-4">
<Button color="failure" onClick={() => setOpenModal(false)}>
{"Yes, I'm sure"}
</Button>
<Button color="gray" onClick={() => setOpenModal(false)}>
No, cancel
</Button>
</div>
</div>
</Modal.Body>
</Modal>
</>
);
}
#
Modal with form elementsYou can also add form elements inside of the modal component by adding the markup that you want inside the <Modal.Body>
component. Form elements can be used to show user authentication or surveys modal elements.
"use client";
import { Button, Checkbox, Label, Modal, TextInput } from "flowbite-react";
import { useState } from "react";
export function Component() {
const [openModal, setOpenModal] = useState(true);
const [email, setEmail] = useState('');
function onCloseModal() {
setOpenModal(false);
setEmail('');
}
return (
<>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
<Modal show={openModal} size="md" onClose={onCloseModal} popup>
<Modal.Header />
<Modal.Body>
<div className="space-y-6">
<h3 className="text-xl font-medium text-gray-900 dark:text-white">Sign in to our platform</h3>
<div>
<div className="mb-2 block">
<Label htmlFor="email" value="Your email" />
</div>
<TextInput
id="email"
placeholder="name@company.com"
value={email}
onChange={(event) => setEmail(event.target.value)}
required
/>
</div>
<div>
<div className="mb-2 block">
<Label htmlFor="password" value="Your password" />
</div>
<TextInput id="password" type="password" required />
</div>
<div className="flex justify-between">
<div className="flex items-center gap-2">
<Checkbox id="remember" />
<Label htmlFor="remember">Remember me</Label>
</div>
<a href="#" className="text-sm text-cyan-700 hover:underline dark:text-cyan-500">
Lost Password?
</a>
</div>
<div className="w-full">
<Button>Log in to your account</Button>
</div>
<div className="flex justify-between text-sm font-medium text-gray-500 dark:text-gray-300">
Not registered?
<a href="#" className="text-cyan-700 hover:underline dark:text-cyan-500">
Create account
</a>
</div>
</div>
</Modal.Body>
</Modal>
</>
);
}
#
Initial focusThe initialFocus
property in the <Modal />
component sets the initial focus on a specific element when the modal opens, enhancing user experience by directing attention to key inputs such as those in authentication forms or surveys.
"use client";
import { Button, Checkbox, Label, Modal, TextInput } from "flowbite-react";
import { useRef, useState } from "react";
export function Component() {
const [openModal, setOpenModal] = useState(true);
const emailInputRef = useRef<HTMLInputElement>(null);
return (
<>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
<Modal show={openModal} size="md" popup onClose={() => setOpenModal(false)} initialFocus={emailInputRef}>
<Modal.Header />
<Modal.Body>
<div className="space-y-6">
<h3 className="text-xl font-medium text-gray-900 dark:text-white">Sign in to our platform</h3>
<div>
<div className="mb-2 block">
<Label htmlFor="email" value="Your email" />
</div>
<TextInput id="email" ref={emailInputRef} placeholder="name@company.com" required />
</div>
<div>
<div className="mb-2 block">
<Label htmlFor="password" value="Your password" />
</div>
<TextInput id="password" type="password" required />
</div>
<div className="flex justify-between">
<div className="flex items-center gap-2">
<Checkbox id="remember" />
<Label htmlFor="remember">Remember me</Label>
</div>
<a href="#" className="text-sm text-cyan-700 hover:underline dark:text-cyan-500">
Lost Password?
</a>
</div>
<div className="w-full">
<Button>Log in to your account</Button>
</div>
<div className="flex justify-between text-sm font-medium text-gray-500 dark:text-gray-300">
Not registered?
<a href="#" className="text-cyan-700 hover:underline dark:text-cyan-500">
Create account
</a>
</div>
</div>
</Modal.Body>
</Modal>
</>
);
}
#
Sizing optionsTo make the modal component smaller or larger you can pass the size
prop to the <Modal>
React component and you can choose from sm
, md
, lg
, xl
and all the way to 7xl
.
"use client";
import { Button, Modal, Select } from "flowbite-react";
import { useState } from "react";
export function Component() {
const [openModal, setOpenModal] = useState(true);
const [modalSize, setModalSize] = useState<string>('md');
return (
<>
<div className="flex flex-wrap gap-4">
<div className="w-40">
<Select defaultValue="md" onChange={(event) => setModalSize(event.target.value)}>
<option value="sm">sm</option>
<option value="md">md</option>
<option value="lg">lg</option>
<option value="xl">xl</option>
<option value="2xl">2xl</option>
<option value="3xl">3xl</option>
<option value="4xl">4xl</option>
<option value="5xl">5xl</option>
<option value="6xl">6xl</option>
<option value="7xl">7xl</option>
</Select>
</div>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
</div>
<Modal show={openModal} size={modalSize} onClose={() => setOpenModal(false)}>
<Modal.Header>Small modal</Modal.Header>
<Modal.Body>
<div className="space-y-6 p-6">
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
With less than a month to go before the European Union enacts new consumer privacy laws for its citizens,
companies around the world are updating their terms of service agreements to comply.
</p>
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
The European Union’s General Data Protection Regulation (G.D.P.R.) goes into effect on May 25 and is meant
to ensure a common set of data rights in the European Union. It requires organizations to notify users as
soon as possible of high-risk data breaches that could personally affect them.
</p>
</div>
</Modal.Body>
<Modal.Footer>
<Button onClick={() => setOpenModal(false)}>I accept</Button>
<Button color="gray" onClick={() => setOpenModal(false)}>
Decline
</Button>
</Modal.Footer>
</Modal>
</>
);
}
#
Placement optionsTo set the position of the modal component relative to the page you can use the position
prop on the modal component and you can choose from center
, top-left
, top-center
, bottom-right
, and more based on the selector options below.
"use client";
import { Button, Modal, Select } from "flowbite-react";
import { useState } from "react";
export function Component() {
const [openModal, setOpenModal] = useState(true);
const [modalPlacement, setModalPlacement] = useState('center')
return (
<>
<div className="flex flex-wrap gap-4">
<div className="w-40">
<Select defaultValue="center" onChange={(event) => setModalPlacement(event.target.value)}>
<option value="center">Center</option>
<option value="top-left">Top left</option>
<option value="top-center">Top center</option>
<option value="top-right">Top right</option>
<option value="center-left">Center left</option>
<option value="center-right">Center right</option>
<option value="bottom-right">Bottom right</option>
<option value="bottom-center">Bottom center</option>
<option value="bottom-left">Bottom left</option>
</Select>
</div>
<Button onClick={() => setOpenModal(true)}>Toggle modal</Button>
</div>
<Modal
show={openModal}
position={modalPlacement}
onClose={() => setOpenModal(false)}
>
<Modal.Header>Small modal</Modal.Header>
<Modal.Body>
<div className="space-y-6 p-6">
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
With less than a month to go before the European Union enacts new consumer privacy laws for its citizens,
companies around the world are updating their terms of service agreements to comply.
</p>
<p className="text-base leading-relaxed text-gray-500 dark:text-gray-400">
The European Union’s General Data Protection Regulation (G.D.P.R.) goes into effect on May 25 and is meant
to ensure a common set of data rights in the European Union. It requires organizations to notify users as
soon as possible of high-risk data breaches that could personally affect them.
</p>
</div>
</Modal.Body>
<Modal.Footer>
<Button onClick={() => setOpenModal(false)}>I accept</Button>
<Button color="gray" onClick={() => setOpenModal(false)}>
Decline
</Button>
</Modal.Footer>
</Modal>
</>
);
}
#
ThemeTo learn more about how to customize the appearance of components, please see the Theme docs.
{
"root": {
"base": "fixed inset-x-0 top-0 z-50 h-screen overflow-y-auto overflow-x-hidden md:inset-0 md:h-full",
"show": {
"on": "flex bg-gray-900 bg-opacity-50 dark:bg-opacity-80",
"off": "hidden"
},
"sizes": {
"sm": "max-w-sm",
"md": "max-w-md",
"lg": "max-w-lg",
"xl": "max-w-xl",
"2xl": "max-w-2xl",
"3xl": "max-w-3xl",
"4xl": "max-w-4xl",
"5xl": "max-w-5xl",
"6xl": "max-w-6xl",
"7xl": "max-w-7xl"
},
"positions": {
"top-left": "items-start justify-start",
"top-center": "items-start justify-center",
"top-right": "items-start justify-end",
"center-left": "items-center justify-start",
"center": "items-center justify-center",
"center-right": "items-center justify-end",
"bottom-right": "items-end justify-end",
"bottom-center": "items-end justify-center",
"bottom-left": "items-end justify-start"
}
},
"content": {
"base": "relative h-full w-full p-4 md:h-auto",
"inner": "relative flex max-h-[90dvh] flex-col rounded-lg bg-white shadow dark:bg-gray-700"
},
"body": {
"base": "flex-1 overflow-auto p-6",
"popup": "pt-0"
},
"header": {
"base": "flex items-start justify-between rounded-t border-b p-5 dark:border-gray-600",
"popup": "border-b-0 p-2",
"title": "text-xl font-medium text-gray-900 dark:text-white",
"close": {
"base": "ml-auto inline-flex items-center rounded-lg bg-transparent p-1.5 text-sm text-gray-400 hover:bg-gray-200 hover:text-gray-900 dark:hover:bg-gray-600 dark:hover:text-white",
"icon": "h-5 w-5"
}
},
"footer": {
"base": "flex items-center space-x-2 rounded-b border-gray-200 p-6 dark:border-gray-600",
"popup": "border-t"
}
}