change the main list to row

This commit is contained in:
kicap
2024-07-27 20:06:56 +08:00
parent 1607b6eb00
commit fb63a2b177
20 changed files with 15114 additions and 225 deletions

View File

@ -13,4 +13,6 @@ class MyFunction {
input = input.replaceAll('| ', '\n');
return input;
}
String capitalize(String s) => s[0].toUpperCase() + s.substring(1);
}