Add e2ee settings

This commit is contained in:
Christian Pauly
2020-02-04 14:42:35 +01:00
parent 178e50a564
commit c6c419f76d
15 changed files with 357 additions and 50 deletions

View File

@ -0,0 +1,15 @@
extension BeautifyStringExtension on String {
String get beautified {
String beautifiedStr = "";
for (int i = 0; i < this.length; i++) {
beautifiedStr += this.substring(i, i + 1);
if (i % 4 == 3) {
beautifiedStr += " ";
}
if (i % 16 == 15) {
beautifiedStr += "\n";
}
}
return beautifiedStr;
}
}