dart_rfb 0.7.0 dart_rfb: ^0.7.0 copied to clipboard
Implementation of The Remote Framebuffer Protocol (RFC 6143, aka VNC protocol)
import 'package:dart_rfb/dart_rfb.dart';
void main() async {
final RemoteFrameBufferClient client = RemoteFrameBufferClient();
await client.connect(hostname: '127.0.0.1');
client.handleIncomingMessages();
}