I am able to initialize the client a small size, but once i resize the window it enforces a certain minimum which is larger than we want.
How do i update it so that I can resize it to any size the user wants?
This is how I I initialize using Angular/Typescript:
import ZoomMtgEmbedded from "@zoom/meetingsdk/embedded";
...
await this.ngZone.runOutsideAngular(() => {
return this.client.init({
debug: true,
zoomAppRoot: meetingSDKElement,
language: 'en-US',
patchJsMedia: true,
customize: {
video: {
isResizable: true,
viewSizes: {
default: {
width: 240,
height: 135
}
}
}
}
});
});