-
Notifications
You must be signed in to change notification settings - Fork 28.6k
Screen turns black after attempting to lock the screen, while launching app #45086
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Supplementary explanation: public class FlutterModuleActivity extends BasicAutoActivity {
@Override
public void setupActivityComponent(@NonNull AppComponent appComponent) {
}
private FlutterView flutterView;
/**
* 刷新token,通过发送广播并发送渠道事件
* @param event
*/
@Subscriber
public void onTokenRefresh(BusEvents.LoginRefreshEvent event) {
HOMethodsChannelPlugin.sendRefreshTokenMessage();
}
/**
* 跳转flutter页面的简单方式,通
8000
发送广播实现
* @param event
*/
@Subscriber
public void gotoFlutterPage(BusEvents.PushToFlutterPageEvent event) {
if (!TextUtils.isEmpty(event.router)) {
flutterView.pushRoute(event.router);
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
if (flutterView != null) {
flutterView.getPluginRegistry().onActivityResult(requestCode, resultCode, data);
}
super.onActivityResult(requestCode, resultCode, data);
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if (flutterView != null) {
flutterView.getPluginRegistry().onRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
// 发送事件通知flutter退出当前页面
@Subscriber
public void flutterPopPage(BusEvents.FlutterPopPageEvent event) {
if (this.flutterView != null) {
flutterView.popRoute();
}
}
@Override
public int initView(@Nullable Bundle savedInstanceState) {
Intent intent = getIntent();
String router = intent.getStringExtra("router");
LinearLayout linearLayout = new LinearLayout(this);
linearLayout.setVisibility(View.INVISIBLE);
flutterView = Flutter.createView(this, getLifecycle(), router);
linearLayout.addView(flutterView);
flutterView.addFirstFrameListener(new FlutterView.FirstFrameListener() {
@Override
public void onFirstFrame() {
linearLayout.setVisibility(View.VISIBLE);
}
});
// 注册一些列的event
GeneratedPluginRegistrant.registerWith(flutterView.getPluginRegistry(), this);
setContentView(linearLayout);
return 0;
}
@Override
public void initData(@Nullable Bundle savedInstanceState) {
Intent intent = getIntent();
checkOpenMsgCenter(intent);
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
checkOpenMsgCenter(intent);
}
public void checkOpenMsgCenter(Intent intent) {
boolean openMsg = intent.getBooleanExtra("openMsg", false);
if (openMsg) {
if (flutterView != null) {
flutterView.pushRoute("biz_msgcenter");
}
}
}
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StatusBarUtils.setStatusBarFullTransparent(getWindow());
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (flutterView != null) {
flutterView.dispatchConfigurationChanged(newConfig);
}
}
@Override
public void onBackPressed() {
if (this.flutterView != null) {
flutterView.popRoute();
} else
super.onBackPressed();
}
@Override
protected void onDestroy() {
super.onDestroy();
GeneratedPluginRegistrant.destroy();
}
} |
Hello @tianlin95310 ! Thank you for posting the issue. This issue also might be similar to the #44520. |
@janmoppel flutter attach -v logs[ +14 ms] executing: [G:\Softwares\flutter-sdk\] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +39 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] cc3ca9a916cb1da851a1f36432154a534787da99
[ ] executing: [G:\Softwares\flutter-sdk\] git describe --match v*.*.* --first-parent --long --tags
[ +31 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v1.10.6-0-gcc3ca9a91
[ +5 ms] executing: [G:\Softwares\flutter-sdk\] git rev-parse --abbrev-ref --symbolic @{u}
[ +28 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] fatal: no upstream configured for branch '1.10.6'
[ +5 ms] executing: [G:\Softwares\flutter-sdk\] git rev-parse --abbrev-ref HEAD
[ +29 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] 1.10.6
[ +49 ms] executing: C:\Users\Lenovo\AppData\Local\Android\Sdk\platform-tools\adb.exe devices -l
[ +19 ms] Exit code 0 from: C:\Users\Lenovo\AppData\Local\Android\Sdk\platform-tools\adb.exe devices -l
[ ] List of devices attached
221d64242a0c7ece device product:lineage_starlte model:SM_G960F device:starlte transport_id:20
[ +14 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ +20 ms] executing: C:\Users\Lenovo\AppData\Local\Android\Sdk\platform-tools\adb.exe -s 221d64242a0c7ece shell -x logcat -v time -t 1
[ +87 ms] Exit code 0 from: C:\Users\Lenovo\AppData\Local\Android\Sdk\platform-tools\adb.exe -s 221d64242a0c7ece shell -x logcat -v time -t 1
[ ] --------- beginning of main
11-18 17:26:49.910 I/zygote64( 4624): Looking for service android.hardware.radio.deprecated@1.0::IOemHook/slot1
[ +10 ms] executing: C:\Users\Lenovo\AppData\Local\Android\Sdk\platform-tools\adb.exe -s 221d64242a0c7ece shell -x logcat -v time
[ +2 ms] Waiting for a connection from Flutter on SM G960F...
[+28097 ms] Observatory URL on device: http://127.0.0.1:44757/Xw3Bp_sqh40=/
[ +5 ms] executing: C:\Users\Lenovo\AppData\Local\Android\Sdk\platform-tools\adb.exe -s 221d64242a0c7ece forward tcp:0 tcp:44757
[ +23 ms] 52196
[ ] Forwarded host port 52196 to device port 44757 for Observatory
[ +1 ms] Done.
[ +29 ms] Connecting to service protocol: http://127.0.0.1:52196/Xw3Bp_sqh40=/
[ +238 ms] Successfully connected to service protocol: http://127.0.0.1:52196/Xw3Bp_sqh40=/
[ +2 ms] Sending to VM service: getVM({})
[ +9 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Unknown, operatingSystem: android, targetCPU: arm64, version: 2.6.0-dev.2.0.flutter-69b5681546 (Tue Sep 24 23:43:24 2019 +0000) on
"android_arm64", _profilerMode: Dart, _nativeZoneMemoryUsage: 0,...
[ +5 ms] Sending to VM service: getIsolate({isolateId: isolates/2836120728077527})
[ +2 ms] Sending to VM service: _flutter.listViews({})
[ +7 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7d68a54920, isolate: {type: @Isolate, fixedId: true, id: isolates/2836120728077527, name:
main.dart$main-2836120728077527, number: 2836120728077527}}]}
[ +4 ms] DevFS: Creating new filesystem on the device (null)
[ ] Sending to VM service: _createDevFS({fsName: flutter_panda})
[ +26 ms] Result: {type: Isolate, id: isolates/2836120728077527, name: main, number: 2836120728077527, _originNumber: 2836120728077527, startTime: 1574069238189, _heaps: {new: {type: HeapSpace, name:
new, vmName: Scavenger, collections: 0, avgCollectionPeriodMillis...
[ +38 ms] Result: {type: FileSystem, name: flutter_panda, uri: file:///data/user/0/com.panda.android.dev/code_cache/flutter_pandaFKBXMB/flutter_panda/}
[ ] DevFS: Created new filesystem on the device (file:///data/user/0/com.panda.android.dev/code_cache/flutter_pandaFKBXMB/flutter_panda/)
[ +1 ms] Updating assets
[ +237 ms] Scanned through 0 files in 0ms
[ +2 ms] Syncing files to device SM G960F...
[ +1 ms] Scanning asset files
[ +7 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +6 ms] G:\Softwares\flutter-sdk\bin\cache\dart-sdk\bin\dart G:\Softwares\flutter-sdk\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root
G:\Softwares\flutter-sdk\bin\cache\artifacts\engine\common\flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill
C:\Users\Lenovo\AppData\Local\Temp\_fluttter_tool80cd2345-09e5-11ea-9031-94c691da8cd7\app.dill --packages G:\SourceCode\panda\flutter_panda\.packages --filesystem-scheme org-dartlang-root
[ +5 ms] <- compile package:flutter_panda/main.dart
[ +73 ms] -> result ea601ee6-7000-4af2-8199-393069d59b37
[+1215 ms] -> ea601ee6-7000-4af2-8199-393069d59b37
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/charcode-1.1.2/lib/ascii.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/collection.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/algorithms.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/canonicalized_map.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/combined_wrappers/combined_iterable.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/combined_wrappers/combined_list.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/combined_wrappers/combined_map.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/comparators.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/empty_unmodifiable_set.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/wrappers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/equality.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/equality_map.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/equality_set.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/functions.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/iterable_zip.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/priority_queue.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/queue_list.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/union_set.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/unmodifiable_wrappers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/union_set_controller.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/collection-1.14.11/lib/src/utils.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/common_utils.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/date_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/endecode_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/log_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/money_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/num_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/object_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/regex_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/text_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/timeline_util.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/common_utils-1.1.3/lib/src/timer_util.dart
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/convert.dart
[ +2 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/accumulator_sink.dart
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/byte_accumulator_sink.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/hex.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/hex/decoder.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/hex/encoder.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/identity_codec.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/percent.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/percent/decoder.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/percent/encoder.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/string_accumulator_sink.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/convert-2.1.1/lib/src/utils.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/cookie_jar.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/cookie_jar.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/default_cookie_jar.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/persist_cookie_jar.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/cookie_jar-1.0.1/lib/src/serializable_cookie.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/crypto.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/digest.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/digest_sink.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/hash.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/hash_sink.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/hmac.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/md5.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha1.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha256.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha512.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/sha512_fastsinks.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/crypto-2.1.3/lib/src/utils.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/decimal-0.3.5/lib/decimal.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/dio.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/adapter.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/cancel_token.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/dio.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/dio_error.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/dio_http_headers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/form_data.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/interceptor.dart
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/interceptors/cookie_mgr.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/interceptors/log.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/options.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/response.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/transformer.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/dio-2.1.0/lib/src/upload_file_info.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/event_bus-1.1.0/lib/event_bus.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_page_indicator-0.0.3/lib/flutter_page_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_screenutil-0.6.0/lib/flutter_screenutil.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/flutter_swiper.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/src/swiper.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/src/custom_layout.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/ticker_provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/src/swiper_control.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/src/swiper_controller.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/src/swiper_pagination.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/flutter_swiper-1.1.6/lib/src/swiper_plugin.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/google_maps_flutter.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/callbacks.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/google_map.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/bitmap.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/camera.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/cap.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/circle.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/circle_updates.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/controller.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/joint_type.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/location.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/marker.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/marker_updates.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/pattern_item.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/polygon.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/polygon_updates.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/polyline.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/polyline_updates.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/screen_coordinate.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/google_maps_flutter-0.5.21+7/lib/src/ui.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/image_cropper-1.1.0/lib/image_cropper.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/image_cropper-1.1.0/lib/src/cropper.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/image_cropper-1.1.0/lib/src/options.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/image_cropper-1.1.0/lib/src/utils.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/image_picker-0.6.1+8/lib/image_picker.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/date_symbol_data_custom.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/date_symbols.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/intl.dart
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/number_format.dart
[ +3 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/bidi_formatter.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/bidi_utils.dart
[ +3 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/compact_number_format.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/date_format.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/date_format_field.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl/date_format_helpers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/number_symbols.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/number_symbols_data.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/date_format_internal.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/intl_helpers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/intl-0.16.0/lib/src/plural_rules.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/meta-1.1.7/lib/meta.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/async_provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/change_notifier_provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/consumer.dart
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/delegate_widget.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/listenable_provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/proxy_provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/selector.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/provider-3.1.0+1/lib/src/value_listenable_provider.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/pull_to_refresh.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/bezier_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/classic_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/custom_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/link_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/material_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/twolevel_indicator.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/indicator/waterdrop_header.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/internals/indicator_wrap.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/internals/refresh_localizations.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/internals/refresh_physics.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/internals/slivers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.5.7/lib/src/smart_refresher.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/rational-0.3.6/lib/rational.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/transformer_page_view-0.1.6/lib/index_controller.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/transformer_page_view-0.1.6/lib/parallax.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/transformer_page_view-0.1.6/lib/transformer_page_view.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/typed_data-1.1.6/lib/typed_buffers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/typed_data-1.1.6/lib/typed_data.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/hash.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/vector_math_64.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/aabb2.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/aabb3.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/colors.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/frustum.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/intersection_result.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/matrix2.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/matrix3.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/matrix4.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/obb3.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/plane.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/quad.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/quaternion.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/ray.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/sphere.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/third_party/noise.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/triangle.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector2.dart
[ +1 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector3.dart
[ +2 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/vector4.dart
[ +3 ms] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/constants.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/error_helpers.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/opengl.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/vector_math-2.0.8/lib/src/vector_math_64/utilities.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.15+1/lib/platform_interface.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.15+1/lib/src/webview_android.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.15+1/lib/src/webview_cupertino.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.15+1/lib/src/webview_method_channel.dart
[ ] -> +file:///C:/Users/Lenovo/AppData/Roaming/Pub/Cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.15+1/lib/webview_flutter.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/animation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/cupertino.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/foundation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/gestures.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/material.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/painting.dart
[ ] -> +file:///G:/Softwares/flutter
10000
-sdk/packages/flutter/lib/physics.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/rendering.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/scheduler.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/semantics.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/services.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/animation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/animation_controller.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/listener_helpers.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/animations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/curves.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/tween.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/animation/tween_sequence.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/action_sheet.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/object.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/box.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/activity_indicator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/app.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/colors.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/constants.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/date_picker.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/dialog.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/icons.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/interface_level.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/nav_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/diagnostics.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/page_scaffold.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/picker.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/refresh.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/route.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/scrollbar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/segmented_control.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/slider.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/switch.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/tab_scaffold.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/tab_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/text_field.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/automatic_keep_alive.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/text_selection.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/text_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/cupertino/thumb_painter.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/_bitfield_io.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/_isolates_io.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/_platform_io.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/annotations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/assertions.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/basic_types.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/bitfield.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/change_notifier.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/collections.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/consolidate_response.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/constants.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/isolates.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/key.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/licenses.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/node.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/observer_list.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/platform.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/print.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/profile.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/serialization.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/synchronous_future.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/foundation/unicode.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/arena.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/constants.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/converter.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/drag.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/drag_details.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/eager.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/events.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/force_press.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/hit_test.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/long_press.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/lsq_solver.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/monodrag.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/mouse_tracking.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/multidrag.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/multitap.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/pointer_router.dart
[ +2 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart
[ +4 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/recognizer.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/scale.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/tap.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/team.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/gestures/velocity_tracker.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/about.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/animated_icons.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/app.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/app_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/app_bar_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/arc.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/back_button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/banner.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/banner_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/bottom_app_bar.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/bottom_app_bar_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/bottom_navigation_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/bottom_sheet.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/bottom_sheet_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/button_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/button_bar_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/button_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/card.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/card_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/checkbox.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/checkbox_list_tile.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/chip.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/chip_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/circle_avatar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/color_scheme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/colors.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/constants.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/data_table.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/data_table_source.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/date_picker.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/dialog.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/dialog_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/divider.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/divider_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/drawer.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/drawer_header.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/dropdown.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/expand_icon.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/expansion_panel.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/expansion_tile.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/feedback.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/flat_button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/flexible_space_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/floating_action_button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/floating_action_button_location.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/floating_action_button_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/flutter_logo.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/grid_tile.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/grid_tile_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/icon_button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/icons.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/ink_decoration.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/ink_highlight.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/ink_ripple.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/ink_splash.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/ink_well.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/input_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/input_decorator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/list_tile.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/material.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/material_button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/material_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/material_state.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/mergeable_material.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/outline_button.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/page.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/page_transitions_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/paginated_data_table.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/popup_menu.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/popup_menu_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/progress_indicator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/radio.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/radio_list_tile.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/raised_button.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/range_slider.dart
[ +2 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/refresh_indicator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/reorderable_list.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/scaffold.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/scrollbar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/search.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/selectable_text.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/shadows.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/slider.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/slider_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/snack_bar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/snack_bar_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/stepper.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/switch.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/switch_list_tile.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/tab_bar_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/tab_controller.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/tab_indicator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/tabs.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/text_field.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/text_form_field.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/text_selection.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/text_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/theme_data.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/time.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/time_picker.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/toggle_buttons.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/toggle_buttons_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/toggleable.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/tooltip.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/tooltip_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/typography.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/material/user_accounts_drawer_header.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/_network_image_io.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/alignment.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/basic_types.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/beveled_rectangle_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/border_radius.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/borders.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/box_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/box_decoration.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/box_fit.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/box_shadow.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/circle_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/clip.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/colors.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/continuous_rectangle_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/decoration.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/decoration_image.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/edge_insets.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/flutter_logo.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/fractional_offset.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/geometry.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/gradient.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/image_cache.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/image_decoder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/image_provider.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/image_resolution.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/image_stream.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/inline_span.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/matrix_utils.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/notched_shapes.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/paint_utilities.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/placeholder_span.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/rounded_rectangle_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/shader_warm_up.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/shape_decoration.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/stadium_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/strut_style.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/text_painter.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/text_span.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/painting/text_style.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/clamped_simulation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/friction_simulation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/gravity_simulation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/simulation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/spring_simulation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/tolerance.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/physics/utils.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/animated_size.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/scheduler/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/semantics/binding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/custom_layout.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/custom_paint.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/editable.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/error.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/flex.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/flow.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/image.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/layer.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/list_body.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/list_wheel_viewport.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/paragraph.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/performance_overlay.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/platform_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/proxy_box.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/rotated_box.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/shifted_box.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_fill.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_grid.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_list.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_padding.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/sliver_persistent_header.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/stack.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/table.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/table_border.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/texture.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/tweens.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/viewport.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/viewport_offset.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/rendering/wrap.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/scheduler/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/scheduler/priority.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/scheduler/ticker.dart
[ +2 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/semantics/debug.dart
[ +4 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/semantics/semantics.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/semantics/semantics_event.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/semantics/semantics_service.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/asset_bundle.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/binary_messenger.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/clipboard.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/font_loader.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/haptic_feedback.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/keyboard_key.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/keyboard_maps.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/message_codec.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/message_codecs.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/platform_channel.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/platform_messages.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/platform_views.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/raw_keyboard.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/raw_keyboard_android.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/raw_keyboard_linux.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/raw_keyboard_macos.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/system_channels.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/system_chrome.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/system_navigator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/system_sound.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/text_editing.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/text_formatter.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/services/text_input.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/actions.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/animated_cross_fade.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/animated_list.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/animated_size.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/animated_switcher.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/annotated_region.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/app.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/async.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/banner.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/basic.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/color_filter.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/constants.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/container.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/debug.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/dismissible.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/drag_target.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_notification.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/editable_text.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/fade_in_image.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/focus_manager.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/focus_scope.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/focus_traversal.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/form.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/framework.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/gesture_detector.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/grid_paper.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/heroes.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/icon.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/icon_data.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/icon_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/icon_theme_data.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/image.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/image_icon.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/implicit_animations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/inherited_model.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/inherited_notifier.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/inherited_theme.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/layout_builder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/media_query.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/modal_barrier.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/navigation_toolbar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/navigator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/nested_scroll_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/notification_listener.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/orientation_builder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/overlay.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/overscroll_indicator.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/page_storage.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/page_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/pages.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/performance_overlay.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/placeholder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/platform_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/preferred_size.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/primary_scroll_controller.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/route_notification_messages.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/routes.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/safe_area.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_activity.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_configuration.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_context.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_controller.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_metrics.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_physics.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_position.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_simulation.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scroll_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scrollable.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/scrollbar.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/semantics_debugger.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/shortcuts.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/single_child_scroll_view.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/sliver.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/sliver_layout_builder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/sliver_persistent_header.dart
[ +1 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart
[ +4 ms] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/spacer.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/status_transitions.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/table.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/text.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/text_selection.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/texture.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/title.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/transitions.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/tween_animation_builder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/unique_widget.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/value_listenable_builder.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/viewport.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/visibility.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/widget_inspector.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/widget_span.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/src/widgets/will_pop_scope.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter/lib/widgets.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/flutter_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/cupertino_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/l10n/generated_cupertino_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/l10n/generated_date_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/l10n/generated_material_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/material_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/utils/date_localizations.dart
[ ] -> +file:///G:/Softwares/flutter-sdk/packages/flutter_localizations/lib/src/widgets_localizations.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_book/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_book/lib/page-open-account.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_book/lib/page-cash-out.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_book/lib/page-send-cash-home.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_book/lib/page-deposit.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_book/lib/page-book-history.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_exchange/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_exchange/lib/utils/util.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_financing/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_financing/lib/financing-detail.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_financing/lib/financing-buy.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_financing/lib/financing-hold-shares.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_financing/lib/financing-buy-detail.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_msgcenter/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_msgcenter/lib/msg-list.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_safe/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_safe/lib/page-open-safe.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_safe/lib/page-safe-box-setting.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-certification.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-language.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-messagerecive.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-newphone.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-pwdfreeamount.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-pwdfreeprompt.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-theme.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-username.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-versioninfo.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/set-feedback.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/password/set-pwdverify.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/password/set-pwdcertificate.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_setting/lib/password/set-pwdchange.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_transfer/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_transfer/lib/page-transfer-history-detail.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_transfer/lib/page-transfer-history.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_transfer/lib/pick-payer-page.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_transfer/lib/pick-receiver-page.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/biz_transfer/lib/transfer-apply-page.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/common_resource.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/page/common-operate-success.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/page/common-webview.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/themes.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/http/rest-http-utils.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/http/open-api-http-utils.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/http/http-request-config.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/http/ho-http-utils.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/plugin/ho-pay-channel.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/plugin/ho-method-channel.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/plugin/ho-http-channel.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/HONumberKeyboard.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/EmptyUtils.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/input/input-format.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/auth/auth.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/reg/RegexUtils.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/ImageUtils.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/widget/HOAssetsImages.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/widget/common_button.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/widget/common_input_widget.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/widget/common_title.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/event/login-event.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/event/userinfo-event.dart
[ ] -> +file:///G:
67F4
/SourceCode/panda/flutter_panda/common_resource/lib/i18n/cupertino-localisations.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/i18n/ho-localization-delegate.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/i18n/ho-localizations.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/i18n/language/en.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/i18n/language/km.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/i18n/language/zh.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/i18n/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/dateformat/DateFormat.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/utils/input/util.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/common_resource/lib/widget/common_picker_widget.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/lib/main.dart
[ ] -> +file:///G:/SourceCode/panda/flutter_panda/lib/query-parse.dart
[ ] -> ea601ee6-7000-4af2-8199-393069d59b37 C:\Users\Lenovo\AppData\Local\Temp\_fluttter_tool80cd2345-09e5-11ea-9031-94c691da8cd7\app.dill 0
[ ] Updating files
[ +554 ms] DevFS: Sync finished
[ +5 ms] Syncing files to device SM G960F... (completed in 2,092ms, longer than expected)
[ ] Synced 1.3MB.
[ ] Sending to VM service: _flutter.listViews({})
[ +6 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7d68a54920, isolate: {type: @Isolate, fixedId: true, id: isolates/2836120728077527, name:
main.dart$main-2836120728077527, number: 2836120728077527}}]}
[ +1 ms] <- accept
[ ] Connected to _flutterView/0x7d68a54920.
[ +1 ms] � To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ ] An Observatory debugger and profiler on SM G960F is available at: http://127.0.0.1:52196/Xw3Bp_sqh40=/
[ ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".
|
Hi @tianlin95310 Suspecting it might be a FlutterView issue, I tried https://github.com/flutter/flutter/tree/master/examples/flutter_view but had no issues when locking the screen flutter doctor -v✓] Flutter (Channel master, 1.24.0-7.0.pre.88, on Mac OS X 10.15.7 19H2
darwin-x64, locale en-GB)
• Flutter version 1.24.0-7.0.pre.88 at /Users/tahatesser/Code/flutter_master
• Framework revision bf94fa072d (18 hours ago), 2020-11-03 16:23:27 -0500
• Engine revision 59b01e0e5a
• Dart version 2.12.0 (build 2.12.0-15.0.dev)
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
• Android SDK at /Users/tahatesser/Code/sdk
• Platform android-30, build-tools 30.0.2
• ANDROID_HOME = /Users/tahatesser/Code/sdk
• Java binary at: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build
1.8.0_242-release-1644-b3-6222593)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 12.1)
• Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer
• Xcode 12.1, Build version 12A7403
• CocoaPods version 1.10.0
[✓] Chrome - develop for the web
• Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[✓] Android Studio (version 4.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build
1.8.0_242-release-1644-b3-6222593)
[✓] VS Code (version 1.50.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.16.0
[✓] Connected device (5 available)
• RMX2001 (mobile) • EUYTFEUSQSRGDA6D • android-arm64 •
Android 10 (API 29)
• Taha’s iPad (mobile) • 00008020-000255113EE8402E • ios • iOS
14.1
• macOS (desktop) • macos • darwin-x64 • Mac OS
X 10.15.7 19H2 darwin-x64
• Web Server (web) • web-server • web-javascript •
Flutter Tools
• Chrome (web) • chrome • web-javascript • Google
Chrome 86.0.4240.183
• No issues found!
Thank you |
Same comment as in #57277 (comment). It's hard to give a specific comment since it's not clear what the repro project is but generally, trying to integrate on FlutterView will necessarily be a bit more hands on and you need to make sure all the Android callbacks such as done in the built-in FlutterFragment are all transmitted to the FlutterView to avoid general lifecycle issues. |
Flutter doctor
Steps to Reproduce
When I touch app icon to launch app in desk, when it launching, I press the power button to lock Screen, after a while. Then, app is locking on black screen (the device SM G960F) or can load some
Text Widget
, but it's not possible to click (the device BTV DL09). This happens not only the debug, but also the release mode.When I operate normally, no exceptions occur.
This also happen when I press back button to desk, and re-enter to app. So I added some logic to kill app when press back.
The text was updated successfully, but these errors were encountered: