We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
To use accented characters, could you add the following code to the Key readKey() method in console.dart
} else if (codeUnit == 0xc3) { final next = stdin.readByteSync(); key = Key.printable(utf8.decode([codeUnit, next]));
}
And this import import 'dart:convert';
The text was updated successfully, but these errors were encountered:
I'm not at all familiar with accent characters.
If you are happy raise a PR with appropriate unit tests I would be happy to merge it.
Sorry, something went wrong.
No branches or pull requests
Hello,
To use accented characters, could you add the following code to the Key readKey() method in console.dart
}
And this import
import 'dart:convert';
The text was updated successfully, but these errors were encountered: