code/tamagui.dev/data/docs/components/toast/1.13.0.mdx
<Description>Use to show feedback to user interactions</Description>
<HeroContainer showAnimationDriverControl> <ToastDemo /> </HeroContainer><Highlights
features={[
Automatically closes,
Pause closing on hover, focus, window blur and mobile touch,
Supports closing via swipe gesture,
Easily animatable with Tamagui's animation drivers,
Native toasts included for Android, iOS and web (notification API),
]}
/>
Run the following command:
yarn add @tamagui/toast burnt
then, if targetin native, rebuild your React Native app. React Native requires sub-dependencies with native dependencies always be hoisted to your apps package.json and Toast relies on the amazing Burnt library by Fernando Rojo to provide its native functionality.
To display the toast natively, you should either pass an array of native platforms (native: ["ios", "web"]), a single platform or true for all platforms.
import { Toast, ToastProvider, useToastController, useToastState } from '@tamagui/toast'
import { Button } from 'tamagui' // or '@tamagui/button'
export default () => (
<ToastProvider native={['mobile']}>
<CurrentToast />
<MyPage />
<ToastViewport />
</ToastProvider>
)
const CurrentToast = () => {
const toast = useToastState()
// only show the component if it's present and not handled by native toast
if (!toast || toast.isHandledNatively) {
return null
}
return (
<Toast key={toast.id}>
<Toast.Title>{toast.title}</Toast.Title>
<Toast.Description>{toast.message}</Toast.Description>
</Toast>
)
}
const MyPage = () => {
const { show } = useToastController()
return (
<Button onPress={() => show('Done!', { message: 'Form submitted successfully.' })}>
Show Toast
</Button>
)
}
Your toasts should be wrapped within a ToastProvider. This is usually done at the root of your application.
<PropsTable
data={[
{
name: 'label',
required: false,
type: 'string',
description: An author-localized label for each toast. Used to help screen reader users associate the interruption with a toast.,
default: 'Notification',
},
{
name: 'duration',
required: false,
type: 'number',
description: Time in milliseconds that each toast should remain visible for. This could be overwritten at the toast level as well.,
default: 5000,
},
{
name: 'swipeDirection',
required: false,
type: 'SwipeDirection',
description: Direction of pointer swipe that should close the toast.,
default: 'right',
},
{
name: 'swipeThreshold',
required: false,
type: 'number',
description: Distance in pixels that the swipe must pass before a close is triggered.,
default: 50,
},
{
name: 'id',
required: false,
type: 'string',
default: 'A unique generated ID',
},
{
name: 'native',
required: false,
type: 'boolean | ToastNativePlatform | ToastNativePlatform[]',
description: Will show a native toast if is true or is set to the current platform. On iOS, it wraps \SPIndicator` and `SPAlert`. On Android, it wraps `ToastAndroid`. On web, it wraps Notification API. Mobile's native features are handled by `burnt`., }, { name: burntOptions, required: false, type: Omit<BurntToastOptions, 'title' | 'message' | 'duration'>, description: Options for the burnt package if you're using native toasts on mobile, }, { name: notificationOptions, required: false, type: NotificationOptions, description: Options for the notification API if you're using native toasts on web`,
},
]}
/>
The portal for toasts to be directed to. Should be used inside ToastProvider. Beyond Stack Props, adds:
<PropsTable
data={[
{
name: 'hotkey',
type: 'string[]',
default: "['F8']",
required: false,
description: The keys to use as the keyboard shortcut that will move focus to the toast viewport.,
},
{
name: 'label',
type: 'string',
default: 'Notifications ({hotkey})',
required: false,
description: An author-localized label for the toast viewport to provide context for screen reader users when navigating page landmarks. The available \{hotkey}` placeholder will be replaced for you., }, { name: 'name', type: 'string', required: false, description: Used to reference the viewport if you want to have multiple viewports in the same provider., }, { name: 'multipleToasts', type: 'boolean', required: false, description: Pass this when you want to have multiple/duplicated toasts.`,
},
]}
/>
Contains the Title, Description, Action and Close component. Should be used inside ToastProvider. Extends Stack and adds:
<PropsTable
data={[
{
name: 'forceMount',
type: 'boolean',
required: false,
description: Used to force mounting when more control is needed. Useful when controlling animation with React animation libraries.,
},
{
name: 'type',
type: "'foreground' | 'background'",
required: false,
description: Control the sensitivity of the toast for accessibility purposes. For toasts that are the result of a user action, choose foreground. Toasts generated from background tasks should use background.,
},
{
name: 'duration',
type: 'number',
required: false,
description: Time in milliseconds that toast should remain visible for. Overrides value given to \ToastProvider`., }, { name: 'defaultOpen', type: 'boolean', required: false, description: The open state of the dialog when it is initially rendered. Use when you do not need to control its open state., }, { name: 'open', type: 'boolean', required: false, description: The controlled open state of the dialog. Must be used in conjunction with `onOpenChange`., }, { name: 'onOpenChange', type: '(open: boolean): void', required: false, description: Event handler called when the open state of the dialog changes., }, { name: 'onEscapeKeyDown', type: "(): DismissableProps['onEscapeKeyDown']", required: false, description: Event handler called when the escape key is down. It can be prevented by calling `event.preventDefault`., }, { name: 'onPause', type: '(): void', required: false, description: Event handler called when the dismiss timer is paused. On web, this occurs when the pointer is moved over the viewport, the viewport is focused or when the window is blurred. On mobile, this occurs when the toast is touched., }, { name: 'onResume', type: '(): void', required: false, description: Event handler called when the dismiss timer is resumed. On web, this occurs when the pointer is moved away from the viewport, the viewport is blurred or when the window is focused. On mobile, this occurs when the toast is released., }, { name: 'onSwipeStart', type: '(event: SwipeEvent): void', required: false, description: Event handler called when starting a swipe interaction. It can be prevented by calling `event.preventDefault`., }, { name: 'onSwipeMove', type: '(event: SwipeEvent): void', required: false, description: Event handler called during a swipe interaction. It can be prevented by calling `event.preventDefault`., }, { name: 'onSwipeCancel', type: '(event: SwipeEvent): void', required: false, description: Event handler called at the cancellation of a swipe interaction. It can be prevented by calling `event.preventDefault`., }, { name: 'onSwipeEnd', type: '(event: SwipeEvent): void', required: false, description: Event handler called at the end of a swipe interaction. It can be prevented by calling `event.preventDefault`., }, { name: 'viewportName', type: 'string', required: false, description: The viewport's name to send the toast to. Used when using multiple viewports and want to forward toasts to different ones.`,
default: 'default',
},
]}
/>
Should be used inside Toast. Extends SizableText.
Should be used inside Toast. Extends SizableText.
Should be used inside Toast. Extends Stack. You can pass asChild to this component and use a custom <Button> inside.
Should be used inside Toast. Extends Stack. You can pass asChild to this component and use a custom <Button> inside.
Used to control the display of toasts. Should be used inside ToastProvider.
<PropsTable
title="Returns"
data={[
{
name: show,
type: '(title: string, showOptions?: ShowToastOptions): void',
description: Call it to show a new toast. If you're using native toasts, you can pass native options using \burntOptions` or `notificationOptions` depending on the native platform (mobile/web)., }, { name: hide, type: '(): void', description: Call it to hide the currently displayed toast.`,
},
]}
/>
Used to render out your toast contents. Should be used inside ToastProvider.
<PropsTable
title="Hook for rendering toast"
data={[
{
name: title,
type: 'string',
},
{
name: id,
type: 'string',
},
{
name: message,
type: 'string',
},
{
name: duration,
type: 'number',
},
]}
/>
Native toasts:
from to burntOptions:<ToastProvider burntOptions={{ from: 'bottom' }}>
Non-native toasts:
You should change the positioning of your <ToastViewport>. For instance, if you want them to appear from top right:
<ToastViewport flexDirection="column-reverse" top={0} right={0} />
Or for bottom center:
<ToastViewport flexDirection="column" bottom={0} left={0} right={0} />
Install react-native-safe-area-context if you haven't, wrap your app inside <SafeAreaProvider>, and use the safe area insets to position the viewport inside the safe area.
import { useSafeAreaInsets } from 'react-native-safe-area-context'
const SafeToastViewport = () => {
const { left, top, right } = useSafeAreaInsets()
return (
<ToastViewport flexDirection="column-reverse" top={top} left={left} right={right} />
)
}
Yes, but you will have to name them and then reference the viewport name on the <Toast> component. for instance:
const App = () => {
return (
<ToastProvider>
<ToastViewport />
<ToastViewport name="viewport-custom" />
</ToastProvider>
)
}
const MyComponent = () => {
return <Toast></Toast>
}
const MyComponent2 = () => {
return <Toast viewportName="viewport-custom" />
}
You will have to opt-out of the native toasts and only use custom ones. Here are some examples:
export default () => {
const [open, setOpen] = React.useState(false)
const timerRef = React.useRef(0)
React.useEffect(() => {
return () => clearTimeout(timerRef.current)
}, [])
return (
<YStack ai="center">
<Button
onPress={() => {
setOpen(false)
window.clearTimeout(timerRef.current)
timerRef.current = window.setTimeout(() => {
setOpen(true)
}, 150)
}}
>
Single Toast
</Button>
<Toast
onOpenChange={setOpen}
open={open}
animation="100ms"
enterStyle={{ x: -20, opacity: 0 }}
exitStyle={{ x: -20, opacity: 0 }}
opacity={1}
x={0}
>
<Toast.Title>Subscribed!</Toast.Title>
<Toast.Description>We'll be in touch.</Toast.Description>
</Toast>
</YStack>
)
}
export default () => {
const [savedCount, setSavedCount] = React.useState(0)
return (
<YStack ai="center">
<Button
onPress={() => {
setSavedCount((old) => old + 1)
}}
>
Show toast
</Button>
{[...Array(savedCount)].map((_, index) => (
<Toast
key={index}
animation="100ms"
enterStyle={{ x: -20, opacity: 0 }}
exitStyle={{ x: -20, opacity: 0 }}
opacity={1}
x={0}
>
<Toast.Title>Subscribed!</Toast.Title>
<Toast.Description>We'll be in touch.</Toast.Description>
</Toast>
))}
</YStack>
)
}