|
@@ -9,6 +9,7 @@ class LiveModule extends ModuleBase {
|
|
|
required this.maxViewCountOfDeviceLive,
|
|
|
required this.limitOfMaxLiveSourceCount,
|
|
|
required this.tipsOfDeviceOffline,
|
|
|
+ required this.scanQrCodeToShareLive,
|
|
|
});
|
|
|
|
|
|
static const ModuleName = "live";
|
|
@@ -21,6 +22,7 @@ class LiveModule extends ModuleBase {
|
|
|
maxViewCountOfDeviceLive: map.pick("maxViewCountOfDeviceLive"),
|
|
|
limitOfMaxLiveSourceCount: map.pick("limitOfMaxLiveSourceCount"),
|
|
|
tipsOfDeviceOffline: map.pick("tipsOfDeviceOffline"),
|
|
|
+ scanQrCodeToShareLive: map.pick("scanQrCodeToShareLive"),
|
|
|
);
|
|
|
}
|
|
|
|
|
@@ -42,6 +44,9 @@ class LiveModule extends ModuleBase {
|
|
|
/// 设备不在线,请刷新列表重试
|
|
|
final FTrStr tipsOfDeviceOffline;
|
|
|
|
|
|
+ /// 扫描二维码,分享直播画面
|
|
|
+ final FTrStr scanQrCodeToShareLive;
|
|
|
+
|
|
|
@override
|
|
|
getProp(String propName) {
|
|
|
// TODO: implement getProp
|