onVideoSizeUpdate method

  1. @override
void onVideoSizeUpdate(
  1. int width,
  2. int height
)
override

Only used for AndroidViewMode.texture

Implementation

@override
void onVideoSizeUpdate(int width, int height) {
  if (_controller.androidViewMode != AndroidViewMode.texture) return;
  _controller.textureParams.value = _controller.textureParams.value.copyWith(
    size: Size(width.toDouble(), height.toDouble()),
  );
}