feat: implement some api; add md editor to app; login and signup logic.

This commit is contained in:
2021-12-30 20:04:00 +08:00
parent 1a0e8f8de7
commit 853132f1a8
61 changed files with 3205 additions and 149 deletions
+2
View File
@@ -1,3 +1,5 @@
extension StringNotNull on String? {
bool get notNull => this != null && this != '';
bool get isNull => !notNull;
}