スライドイン / スライドアウトのアニメーション、アバター、メッセージテキスト、閉じるボタンを備えた、1 件分の通知トーストです。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
notification |
Notification |
✅ | - | id、message、image、duration、button を含む Notification オブジェクト |
onRtkNotificationDismiss |
any |
❌ | - | 通知が閉じられたときのコールバック |
iconPack |
IconPack |
❌ | defaultIconPack |
カスタムアイコンパック |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
サイズのバリアント |
t |
RtkI18n |
❌ | - | i18n 翻訳関数 |
import { RtkNotification } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkNotification notification={notification} />;
}import { RtkNotification } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkNotification
notification={notification}
onRtkNotificationDismiss={(id) => handleDismiss(id)}
size="md"
/>
);
}