style: Use robotomono to display device keys

This commit is contained in:
Christian Pauly 2023-02-17 08:45:49 +01:00
commit 339276b94a
4 changed files with 10 additions and 6 deletions

View file

@ -4,7 +4,7 @@ extension BeautifyStringExtension on String {
for (var i = 0; i < length; i++) {
beautifiedStr += substring(i, i + 1);
if (i % 4 == 3) {
beautifiedStr += ' ';
beautifiedStr += ' ';
}
if (i % 16 == 15) {
beautifiedStr += '\n';