|
@@ -55,7 +55,12 @@ class FRTDeviceChannelView extends StatelessWidget {
|
|
|
}
|
|
|
scale = scale * extraScale;
|
|
|
return Container(
|
|
|
- color: Colors.black,
|
|
|
+ decoration: const BoxDecoration(
|
|
|
+ image: DecorationImage(
|
|
|
+ image: AssetImage('assets/images/live_room_background.jpg'),
|
|
|
+ fit: BoxFit.cover,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
child: Center(
|
|
|
child: AspectRatio(
|
|
|
aspectRatio: realVideoSize.width / realVideoSize.height,
|