buildView method

  1. @override
Widget buildView(
  1. int creationId,
  2. PlatformViewCreatedCallback onPlatformViewCreated, {
  3. Map<String, dynamic> params = const <String, dynamic>{},
})
override

Implementation

@override
Widget buildView(
  int creationId,
  PlatformViewCreatedCallback onPlatformViewCreated, {
  Map<String, dynamic> params = const <String, dynamic>{},
}) {
  return Container(
    color: Colors.grey[300],
    child: Center(child: Text("Not implemented yet")),
  );
}