Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
2025-07-22 01:36 AM
Hi Zoom,
I follow the network document : https://developers.zoom.us/docs/video-sdk/flutter/quality/
then I receive no event links to network
eventListener.addListener(EventType.onUserVideoNetworkStatusChanged,
(data) async {
data = data as Map;
ZoomVideoSdkUser? networkUser =
ZoomVideoSdkUser.fromJson(jsonDecode(data["user"]));
ZoomVideoSdkUser? mySelf = await zoom.session.getMySelf();
if (networkUser.userId != mySelf?.userId) {
// only track status for local user
return;
}
final networkStatus = data["status"];
switch (networkStatus) {
case NetworkStatus.Bad:
showSnackBar(
snackBarType: SnackBarType.error,
title: "Poor network quality".tr,
message: "Move to an area with better connection".tr,
);
break;
case NetworkStatus.Normal:
showSnackBar(
snackBarType: SnackBarType.warning,
title: "Unstable network quality".tr,
message: "Improve your network to prevent disruptions".tr,
);
break;
case NetworkStatus.Good:
showSnackBar(
snackBarType: SnackBarType.success,
title: "Optimal network quality".tr,
message: "Enjoy a seamless consultation experience".tr,
);
break;
case NetworkStatus.None:
showSnackBar(
snackBarType: SnackBarType.success,
title: "No network".tr,
message: "We have to end the call due to no network connection. Please try again later".tr,
);
break;
}
});Could you give me some advice for this?