setSize method Null safety

  1. @override
Future<Size> setSize(
  1. Size size
)
override

Sizes the Android View.

size is the view's new size in logical pixel, it must not be null and must be bigger than zero.

The first time a size is set triggers the creation of the Android view.

Returns the buffer size in logical pixel that backs the texture where the platform view pixels are written to.

The buffer size may or may not be the same as size.

As a result, consumers are expected to clip the texture using size, while using the return value to size the texture.

Implementation

@override
Future<Size> setSize(Size size) {
  throw UnimplementedError('Not supported for $SurfaceAndroidViewController.');
}