**Meeting SDK React Native and 6.5.6
I have successfully integrated the React native SDK for my Expo project. I could join a meeting as a participant, and now I need to hide some buttons from the UI I tested this using an iPhone and couldn’t make it work. Here is my code,**
const Meeting = forwardRef<Handler, MeetingProps>((props, ref) => {
const zoom = useZoom();
function join(session: ZoomMeet, userName: string) {
return zoom.joinMeeting({
meetingNumber: String(session?.id) || "",
password: session?.password!,
userName,
noInvite: true,
noShare: true,
noPhoneDialIn: true,
noRecord: true,
noPhoneDialOut: true,
noBottomToolbar: true,
noChatMsgToast: true,
noDrivingMode: true,
});
}
useImperativeHandle(ref, () => {
return {
join,
};
});
return <View></View>;
});
Even if I add these boolean flags to false, IOS still renders them all. I couldn’t find whether they are supported or not for IOS in the documentation.
Any help is much appreciated. Thank you