在flutter(dart)中如何判断当前线程是主线程还是后台线程?例如,在iOS(swift)中,我们可以通过Thread.isMainThread检查。
Thread.isMainThread
4jb9z9bj1#
也许你可以试试Isolate.current.debugName参考:https://api.flutter.dev/flutter/dart-isolate/Isolate/debugName.html
Isolate.current.debugName
1条答案
按热度按时间4jb9z9bj1#
也许你可以试试
Isolate.current.debugName
参考:https://api.flutter.dev/flutter/dart-isolate/Isolate/debugName.html