I am making a client for my CCTV app and am trying to display multiple streams at the same time. Whenever I do though, only the second (or last) one actually loads. The first one just continues to show the placeholder (in this case a loading spinner).
any help would be greatly appreciated, thank you!

this is the function i use to create my widget
vlcWidget() {
final _videoViewController = VlcPlayerController();
return VlcPlayer(
url: loginEndpoint + _activeStreamUrl,
controller: _videoViewController,
placeholder: Center(child: CircularProgressIndicator()),
);
}
I am making a client for my CCTV app and am trying to display multiple streams at the same time. Whenever I do though, only the second (or last) one actually loads. The first one just continues to show the placeholder (in this case a loading spinner).
any help would be greatly appreciated, thank you!
this is the function i use to create my widget