Audio settings panel with device selection dropdown, audio visualizer preview, and notification sound toggle.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
Size variant |
states |
States |
❌ | - | UI state object |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkSettingsAudio } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkSettingsAudio meeting={meeting} />;
}import { RtkSettingsAudio } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkSettingsAudio meeting={meeting} size="md" states={states} />;
}