Results 38 comments of xuty

Fixed in [1.0.0](https://pub.dev/packages/xterm).

Thanks for the PR! This PR do fix the issue however I'm concerned that scheduling callbacks frequently with `Future.microtask` might have have considerable performance overhead. So I would keep this...

Could you provide your `flutter doctor -v` and os version? Thank you

Flutter desktop support is unavailable in stable channel currently. Try switch to dev or master: ``` flutter channel dev // or flutter channel master ``` See: https://flutter.dev/desktop#set-up

It seems that flutter had updated its windows template since 1.23.0. Try delete the `windows` folder and run `flutter create .`, or checkout the [flutter_1.23.0 branch](https://github.com/TerminalStudio/lite/tree/flutter_1.23.0) which is compatible with...

Try run the following command in Powershell ```powershell Set-ExecutionPolicy Unrestricted ``` Details: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7

Thanks for reporting the problem. This project has been migrated to support flutter 2 and now builds should run normally.

Sorry for the delayed response. It's possible to get notified when the state of the connection changes by listening to [SSHClient.done](https://pub.dev/documentation/dartssh2/latest/dartssh2/SSHClient/done.html) and [SSHForwardChannel.done](https://pub.dev/documentation/dartssh2/latest/dartssh2/SSHForwardChannel/done.html). Both of these two `Future`s complete normally...

The OpenSSH SFTP server use 'Failure' message for many errors and it's hard to tell the specific reason. This usually happens when the permissions is not enough, or the filesystem...

Currently I have no other ideas about the error. However it may help to inspect the logs from `sftp-server` and see what actually happened. Detailed instructions can be found here:...