1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import 'package:clx_flutter_net_example/api_config.dart';
import 'package:clx_flutter_net_example/dio_utils.dart';
import 'package:clx_flutter_net_example/net_util.dart';
import 'package:clx_flutter_net_example/service_api.dart';
import 'package:clx_flutter_util/clx_flutter_util.dart';
import 'package:flutter/material.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized(); // 初始化
await SpUtil.getInstance(); // 初始化本地存储
ApiConfig.env = Env.dev; // 配置环境
DioUtils.instance.initConfig(); // 初始化网络请求框架
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _result = '请求结果:';
@override
void initState() {
super.initState();
// initPlatformState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Column(
children: [
Row(
children: [
ElevatedButton(
onPressed: () async {
var result = await NetUtil.getSync(
ServiceApi.getOwnerAgreementInfo,
);
setState(() {});
_result = "请求结果: $result";
},
child: const Text('get同步请求')),
],
),
Row(
children: [
ElevatedButton(
onPressed: () async {
NetUtil.get(
ServiceApi.getOwnerAgreementInfo,
queryParameters: {
"driverId": "1",
},
successCallback: (data) {
logger.d("请求结果: $data");
setState(() {});
_result = "请求结果: $data";
},
errorCallback: (code, msg) {
logger.d("请求结果: $msg");
},
);
},
child: const Text('get回调')),
],
),
Text(_result),
],
),
),
);
}
}