background property

Widget? background
getter/setter pair

The background of the live streaming.

You can use any Widget as the background of the live streaming, such as a video, a GIF animation, an image, a web page, etc. If you need to dynamically change the background content, you will need to implement the logic for dynamic modification within the Widget you return.

..background = Container(
    decoration: const BoxDecoration(
      image: DecorationImage(
        fit: BoxFit.fitHeight,
        image: ,
      )));

Implementation

Widget? background;