增加广告组件,个人中心

This commit is contained in:
唐明明
2022-05-27 17:52:17 +08:00
parent 4a635f3570
commit d64bf95b25
269 changed files with 3960 additions and 309 deletions

14
lib/https/http.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:dio/dio.dart';
import 'config.dart';
class HttpApi {
static HttpApi? instance;
HttpApi() {
print('回家啊哈哈');
}
}
void main() {
HttpApi();
}