popAllLivePages static method

void popAllLivePages(
  1. BuildContext context
)

主页可能嵌入业务方,所以不关闭,关闭所有直播页面

Implementation

static void popAllLivePages(BuildContext context) {
  Navigator.popUntil(context, (route) {
    final name = route.settings.name;
    return name == null || !name.startsWith(routeNamePrefix);
  });
}