This commit is contained in:
lollipopkit
2023-05-08 16:25:31 +08:00
parent a2361da560
commit 7f16c27dcf
25 changed files with 634 additions and 572 deletions

View File

@@ -2,8 +2,8 @@
class BuildData {
static const String name = "ServerBox";
static const int build = 287;
static const int build = 288;
static const String engine = "3.7.11";
static const String buildAt = "2023-05-07 18:25:45.312302";
static const int modifications = 2;
static const String buildAt = "2023-05-07 20:47:03.124092";
static const int modifications = 1;
}

View File

@@ -33,3 +33,15 @@ const popMenuChild = Padding(
size: 21,
),
);
const centerLoading = Center(child: CircularProgressIndicator());
const centerSizedLoading = SizedBox(
width: 77,
height: 77,
child: Center(
child: CircularProgressIndicator(),
),
);
const loadingIcon = IconButton(onPressed: null, icon: centerLoading);

View File

@@ -6,6 +6,7 @@ const issueUrl = '$myGithub/flutter_server_box/issues';
// Thanks
const thanksMap = {
'its-tom': 'https://github.com/its-tom',
'RainSunMe': 'https://github.com/RainSunMe',
'fecture': 'https://github.com/fecture',
'Tao173': 'https://github.com/Tao173',