overlayBuilder property
Builder for additional custom overlays
Use this to add any custom overlay based on the renderer state.
overlayBuilder: (context, state) => state.isLoading
? Positioned(top: 8, right: 8, child: LoadingSpinner())
: SizedBox.shrink()
Implementation
final Widget Function(BuildContext context, QuickRTCMediaRendererState state)?
overlayBuilder;