81596b6c88
doc: update CONTRIBUTING.md.
2024-10-13 06:38:05 +00:00
612f874723
doc: update docker.md ( #839 )
...
统一端口号
2024-10-13 14:37:07 +08:00
51d30f35d2
doc: update README.md.
2024-10-12 09:46:14 +00:00
804e6ef7eb
doc: update CONTRIBUTING.md.
2024-10-12 09:46:13 +00:00
e3628fc62d
doc: update docker.md & linux-command.md & nginx.md ( #838 )
...
* doc: update linux-command.md
* 增加代理构建
* 删除上次提交多余
2024-10-12 17:45:12 +08:00
184ec1c187
doc: update README.md.
2024-10-11 08:57:52 +00:00
0be49cd510
doc: update CONTRIBUTING.md.
2024-10-11 08:57:51 +00:00
f6fe236778
doc: update docs/nginx.md ( #836 )
2024-10-11 16:56:19 +08:00
b6d62f4f74
doc: update README.md.
2024-10-11 08:48:56 +00:00
4c67490ade
doc: update CONTRIBUTING.md.
2024-10-11 08:48:55 +00:00
3749de233c
doc: update docs/nginx.md ( #836 )
2024-10-11 16:47:53 +08:00
a69be1efba
doc: update docs/css.md
2024-10-03 14:20:53 +08:00
b0444f82bf
doc: update README.md.
2024-09-30 03:48:01 +00:00
c1dd21bf0c
doc: update CONTRIBUTING.md.
2024-09-30 03:48:00 +00:00
c249e0e609
doc: update docs/ffmpeg.md ( #835 )
2024-09-30 11:46:54 +08:00
0fc608a1ff
doc: update README.md.
2024-09-29 10:30:51 +00:00
c0d987694e
doc: update CONTRIBUTING.md.
2024-09-29 10:30:50 +00:00
a74c7e2092
doc: update docs/vue.md #832
2024-09-29 18:29:17 +08:00
88559b491c
chore(deps): update dependency refs-cli to v^1.6.0
2024-09-29 18:28:29 +08:00
eeb42297ac
doc: update README.md.
2024-09-25 15:54:25 +00:00
70842a31b5
doc: update CONTRIBUTING.md.
2024-09-25 15:54:24 +00:00
5ffc6faf3d
docs: update vue.md ( #832 )
...
* doc:update docs/flutter.md
* docs:update docs/flutter.md
* docs:update docs/flutter.md
* docs:update vue.md & flutter.md
2024-09-25 23:53:15 +08:00
ade6fbe3d0
doc: update docs/flutter.md #830
2024-09-24 15:00:38 +08:00
feba5e1704
doc: update docs/vim.md
2024-09-24 14:45:50 +08:00
ce1e1a0c1d
doc: update README.md.
2024-09-24 06:06:35 +00:00
661ee94e68
doc: update CONTRIBUTING.md.
2024-09-24 06:06:34 +00:00
93e3166fc5
doc: Update README.md #102
2024-09-24 14:05:27 +08:00
33909b96f8
doc: update README.md.
2024-09-22 15:29:26 +00:00
001388aa4a
doc: update CONTRIBUTING.md.
2024-09-22 15:29:25 +00:00
33683eab41
docs:update /docs/flutter.md ( #830 )
...
* doc:update docs/flutter.md
* docs:update docs/flutter.md
* docs:update docs/flutter.md
2024-09-22 23:28:23 +08:00
77b2c7a133
doc: update docs/flutter.md ( #828 )
2024-09-21 23:31:54 +08:00
f510d354af
doc: Update README.md #102
2024-09-20 19:31:18 +08:00
f549244389
doc: update docs/symbol-code.md fixed #823
2024-09-17 22:10:36 +08:00
2bac216f98
doc: update docs/mysql.md fixed #827
2024-09-17 20:35:23 +08:00
acf4c11182
doc: update README.md.
2024-09-16 17:07:44 +00:00
dbc29e409a
doc: update CONTRIBUTING.md.
2024-09-16 17:07:43 +00:00
0fb45105c9
doc: Update README.md
2024-09-17 01:06:40 +08:00
ddc7f2dd47
docs: update docs/c.md ( #821 )
2024-09-12 22:53:31 +08:00
660dfe103d
doc: update docs/docker.md
2024-08-29 17:23:26 +08:00
cdeeeb14bb
doc: update README.md.
2024-08-26 11:44:41 +00:00
22f2c1472b
doc: update CONTRIBUTING.md.
2024-08-26 11:44:39 +00:00
ea3391734b
released v1.45.0
v1.45.0
2024-08-26 19:42:59 +08:00
5f90dd9265
doc: update README.md.
2024-08-19 07:19:15 +00:00
638fb0bbce
doc: update CONTRIBUTING.md.
2024-08-19 07:19:14 +00:00
58efbde216
doc: update docs/minio.md #813
2024-08-19 15:18:05 +08:00
d604a0d557
fix: Fixed description of math function ( #817 )
...
* fix: Fixed description of math.sqrt function
* fix: fix math.asin description
* Update lua.md
2024-08-18 17:58:38 +08:00
c4ebb484cd
feat: add minio reference ( #813 )
...
* feat: add minio reference
* fix:alter minio.md
2024-08-15 22:45:46 +08:00
2307a5796a
doc: update README.md.
2024-08-15 01:10:49 +00:00
5ea93312bd
doc: update CONTRIBUTING.md.
2024-08-15 01:10:48 +00:00
f0da2a3397
doc: update docs/dart.md ( #814 )
...
### Current behavior
The current asynchronous login sample code has the following issues:
1. The `main` function tries to use `await userName()`, but `userName` is a string variable, not a function.
2. the `login` function should be called and `await` should be used to wait for its result.
### Expected behavior
The `main` function should correctly call the `login` function and use `await` to wait for the result, then print out the username.
### Sample code
Here is the corrected code:
```dart
Future<String> login() {
String userName = "Temidjoy";
return Future.delayed(
Duration(seconds: 4), () => userName
).
}
main() async {
print('Authenticating please wait...') The
String result = await login();
String result = await login(); print(result);
}
2024-08-15 09:09:47 +08:00