PSAddMember
Thêm thành viên vào cuộc hội thoại nhóm
navigation.navigate('PSAddMemberScreen', {
threadId: threadId,
});
- RN CLI
- Expo
import {PSAddMember} from '@communi/chat-react-native';
import {PSAddMember} from '@piscale/chat-expo';
export const PSAddMemberScreen = ({...}: {...}) => {
return <PSAddMember {...props} />;
}
type PSAddMemberProps = {
threadId: string;
addMemberStyles?: PSAddMemberStyles;
onBackPress?: null | (() => void) | undefined;
onAddParticipantsSuccess?: null | (() => void) | undefined;
};
Tên | Mô tả | Bắt buộc |
---|---|---|
threadId | Tham số xác định id của cuộc hội thoại | ✓ |
addMemberStyles | Tham số xác định style cho các thành phần UI | ✗ |
onBackPress | Tham số gọi lại khi cần back về state trước | ✗ |
onAddParticipantsSuccess | Tham số gọi lại khi thêm thành viên thành công | ✗ |