PSAddMember
Thêm thành viên vào cuộc hội thoại nhóm
Ví dụ
class AddMemberPage extends StatelessWidget {
final String threadId;
const AddMemberPage({super.key, required this.threadId});
@override
Widget build(BuildContext context) {
return PSScaffoldSafeArea(
child: PSAddMember(
threadId: threadId,
navigation: PSAddMemberNavigationProvider(
onBackPress: () {},
onAddParticipantsSuccess: () {
},
),
));
}
}
Các thành phần
class PSAddMemberNavigationProvider {
final Function()? onBackPress;
final Function()? onAddParticipantsSuccess;
PSAddMemberNavigationProvider({
this.onBackPress,
this.onAddParticipantsSuccess,
});
}
Tên | Mô tả | Bắt buộc |
---|---|---|
threadId | Tham số xác định id của cuộc hội thoại | ✓ |
onBackPress | Hàm gọi lại khi cần back về màn trước | ✗ |
onAddParticipantsSuccess | Hàm gọi lại khi thêm thành viên thành công | ✗ |
Ghi chú
Một số chức năng sẽ không hoạt động hoặc không hoạt động đúng cách khi không khai báo những hàm gọi lại.