Skip to content

Commit b5ef836

Browse files
committed
os changed
1 parent 7345ef5 commit b5ef836

File tree

3 files changed

+48
-17
lines changed

3 files changed

+48
-17
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

lib/Pages/SinInPage.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class _SignInPageState extends State<SignInPage> {
108108
await networkHandler.post("/user/login", data);
109109

110110
if (response.statusCode == 200 ||
111-
response.statusCode == 201) {
111+
response.statusCode == 201) {
112112
Map<String, dynamic> output = json.decode(response.body);
113113
print(output["token"]);
114114
setState(() {

pubspec.lock

+44-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Generated by pub
22
# See https://dart.dev/tools/pub/glossary#lockfile
33
packages:
4+
archive:
5+
dependency: transitive
6+
description:
7+
name: archive
8+
url: "https://pub.dartlang.org"
9+
source: hosted
10+
version: "2.0.13"
11+
args:
12+
dependency: transitive
13+
description:
14+
name: args
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "1.6.0"
418
async:
519
dependency: transitive
620
description:
@@ -22,13 +36,6 @@ packages:
2236
url: "https://pub.dartlang.org"
2337
source: hosted
2438
version: "1.1.3"
25-
clock:
26-
dependency: transitive
27-
description:
28-
name: clock
29-
url: "https://pub.dartlang.org"
30-
source: hosted
31-
version: "1.0.1"
3239
collection:
3340
dependency: transitive
3441
description:
@@ -49,21 +56,14 @@ packages:
4956
name: crypto
5057
url: "https://pub.dartlang.org"
5158
source: hosted
52-
version: "2.1.5"
59+
version: "2.1.4"
5360
cupertino_icons:
5461
dependency: "direct main"
5562
description:
5663
name: cupertino_icons
5764
url: "https://pub.dartlang.org"
5865
source: hosted
5966
version: "0.1.3"
60-
fake_async:
61-
dependency: transitive
62-
description:
63-
name: fake_async
64-
url: "https://pub.dartlang.org"
65-
source: hosted
66-
version: "1.1.0"
6767
file:
6868
dependency: transitive
6969
description:
@@ -109,6 +109,13 @@ packages:
109109
url: "https://pub.dartlang.org"
110110
source: hosted
111111
version: "3.1.4"
112+
image:
113+
dependency: transitive
114+
description:
115+
name: image
116+
url: "https://pub.dartlang.org"
117+
source: hosted
118+
version: "2.1.12"
112119
intl:
113120
dependency: transitive
114121
description:
@@ -143,7 +150,7 @@ packages:
143150
name: path
144151
url: "https://pub.dartlang.org"
145152
source: hosted
146-
version: "1.7.0"
153+
version: "1.6.4"
147154
path_provider:
148155
dependency: transitive
149156
description:
@@ -179,6 +186,13 @@ packages:
179186
url: "https://pub.dartlang.org"
180187
source: hosted
181188
version: "1.9.0"
189+
petitparser:
190+
dependency: transitive
191+
description:
192+
name: petitparser
193+
url: "https://pub.dartlang.org"
194+
source: hosted
195+
version: "2.4.0"
182196
platform:
183197
dependency: transitive
184198
description:
@@ -200,6 +214,13 @@ packages:
200214
url: "https://pub.dartlang.org"
201215
source: hosted
202216
version: "3.0.13"
217+
quiver:
218+
dependency: transitive
219+
description:
220+
name: quiver
221+
url: "https://pub.dartlang.org"
222+
source: hosted
223+
version: "2.1.3"
203224
sky_engine:
204225
dependency: transitive
205226
description: flutter
@@ -268,6 +289,13 @@ packages:
268289
url: "https://pub.dartlang.org"
269290
source: hosted
270291
version: "0.1.0"
292+
xml:
293+
dependency: transitive
294+
description:
295+
name: xml
296+
url: "https://pub.dartlang.org"
297+
source: hosted
298+
version: "3.6.1"
271299
sdks:
272300
dart: ">=2.7.0 <3.0.0"
273301
flutter: ">=1.17.0 <2.0.0"

0 commit comments

Comments
 (0)