mod: 用户页跳转&样式修改
This commit is contained in:
@ -23,7 +23,7 @@ class LiveRoomController extends GetxController {
|
||||
super.onInit();
|
||||
if (Get.arguments != null) {
|
||||
var args = Get.arguments['liveItem'];
|
||||
heroTag = Get.arguments['heroTag'];
|
||||
heroTag = Get.arguments['heroTag'] ?? '';
|
||||
liveItem = args;
|
||||
roomId = liveItem.roomId!;
|
||||
if (args.pic != null && args.pic != '') {
|
||||
|
@ -89,20 +89,21 @@ class _LiveRoomPageState extends State<LiveRoomPage> {
|
||||
controller: _meeduPlayerController!,
|
||||
),
|
||||
),
|
||||
Visibility(
|
||||
visible: isShowCover,
|
||||
child: Positioned(
|
||||
top: 0,
|
||||
left: 0,
|
||||
right: 0,
|
||||
child: NetworkImgLayer(
|
||||
type: 'emote',
|
||||
src: _liveRoomController.liveItem.cover,
|
||||
width: Get.size.width,
|
||||
height: videoHeight,
|
||||
if (_liveRoomController.liveItem.cover != null)
|
||||
Visibility(
|
||||
visible: isShowCover,
|
||||
child: Positioned(
|
||||
top: 0,
|
||||
left: 0,
|
||||
right: 0,
|
||||
child: NetworkImgLayer(
|
||||
type: 'emote',
|
||||
src: _liveRoomController.liveItem.cover,
|
||||
width: Get.size.width,
|
||||
height: videoHeight,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
)),
|
||||
if (_liveRoomController.liveItem.watchedShow != null)
|
||||
|
Reference in New Issue
Block a user