feature:完成仓库浏览页面

This commit is contained in:
hackycy
2020-06-24 15:05:17 +08:00
parent 09257b2ca7
commit 98a453221f
6 changed files with 203 additions and 22 deletions

3
lib/utils/strings.dart Normal file
View File

@@ -0,0 +1,3 @@
/// Returns true if s is either null, empty or is solely made of whitespace characters (as defined by String.trim).
bool isBlank(String s) => s == null || s.trim().isEmpty;