flutter_virtual_display 0.0.1
flutter_virtual_display: ^0.0.1 copied to clipboard
This is a Flutter plugin that allows you to create a virtual display
Flutter Virtual Display #
This is a Flutter plugin that allows you to create a virtual display.
Usage #
Create a virtual display
// This will return displayId
await FlutterVirtualDisplay.createDisplay(
name: "Virtual Display",
width: 1920,
height: 1080,
);
To remove this display
FlutterVirtualDisplay.removeDisplay(displayId);
TODO #
Implement windows and linux support, currently only macos supported