mirror of
https://github.com/RxReader/tencent_kit.git
synced 2025-05-22 01:36:15 +08:00
格式化检查
This commit is contained in:
@ -10,6 +10,14 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- flutter packages get
|
- flutter packages get
|
||||||
|
|
||||||
|
- name: format
|
||||||
|
image: v7lin/flutter:1.2.1-stable
|
||||||
|
volumes:
|
||||||
|
- name: pub-cache
|
||||||
|
path: /opt/flutter/.pub-cache
|
||||||
|
commands:
|
||||||
|
- flutter format --dry-run --set-exit-if-changed .
|
||||||
|
|
||||||
- name: analyze
|
- name: analyze
|
||||||
image: v7lin/flutter:1.2.1-stable
|
image: v7lin/flutter:1.2.1-stable
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -5,6 +5,4 @@
|
|||||||
// gestures. You can also use WidgetTester to find child widgets in the widget
|
// gestures. You can also use WidgetTester to find child widgets in the widget
|
||||||
// tree, read text, and verify that the values of widget properties are correct.
|
// tree, read text, and verify that the values of widget properties are correct.
|
||||||
|
|
||||||
void main() {
|
void main() {}
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -3,7 +3,8 @@ library fake_tencent;
|
|||||||
export 'src/domain/tencent_login_resp.dart' hide TencentLoginRespSerializer;
|
export 'src/domain/tencent_login_resp.dart' hide TencentLoginRespSerializer;
|
||||||
export 'src/domain/tencent_resp.dart';
|
export 'src/domain/tencent_resp.dart';
|
||||||
export 'src/domain/tencent_share_resp.dart' hide TencentShareRespSerializer;
|
export 'src/domain/tencent_share_resp.dart' hide TencentShareRespSerializer;
|
||||||
export 'src/domain/tencent_user_info_resp.dart' hide TencentUserInfoRespSerializer;
|
export 'src/domain/tencent_user_info_resp.dart'
|
||||||
|
hide TencentUserInfoRespSerializer;
|
||||||
export 'src/tencent.dart';
|
export 'src/tencent.dart';
|
||||||
export 'src/tencent_provider.dart';
|
export 'src/tencent_provider.dart';
|
||||||
export 'src/tencent_qzone_flag.dart';
|
export 'src/tencent_qzone_flag.dart';
|
||||||
|
@ -2,7 +2,7 @@ abstract class TencentResp {
|
|||||||
TencentResp({
|
TencentResp({
|
||||||
int ret,
|
int ret,
|
||||||
this.msg,
|
this.msg,
|
||||||
}) : ret = ret ?? RET_SUCCESS;
|
}) : ret = ret ?? RET_SUCCESS;
|
||||||
|
|
||||||
/// 网络请求成功发送至服务器,并且服务器返回数据格式正确
|
/// 网络请求成功发送至服务器,并且服务器返回数据格式正确
|
||||||
/// 这里包括所请求业务操作失败的情况,例如没有授权等原因导致
|
/// 这里包括所请求业务操作失败的情况,例如没有授权等原因导致
|
||||||
|
Reference in New Issue
Block a user