ui
Native UI controls: toasts, dialogs, bottom sheets.
sdk.ui.showToast()
sdk.ui.showDialog()
sdk.ui.showBottomSheet()
import { usePoremi } from '@poremi/react-sdk'; function UiExample() { const { sdk } = usePoremi(); const showSuccess = async () => { await sdk.ui.showToast({ message: 'Level complete!', type: 'success' }); }; }