flutter_stetho
Android용 Flutter를 위한 Chrome DevTools 네트워크 검사기
Flutter를 Android용 Facebook Stetho 도구와 통합하기
{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A plugin that connects Flutter to the Chrome Dev Tools on Android devices via the Stetho Android Library.
The main feature I was aiming to achieve was a Network Inspector.
Network Inspector in ActionHow can you too get this plugin up and running in your own app? Follow these steps.
Add flutter_stetho to your dependencies in the pubspec.yaml file
0.3.x0.4.x0.5.xNext, you'll need to install the Stetho.initialize() in the main() function of your app. This will enable Stetho and allow flutter_stetho to wrap all http calls and report information to the Chrome Dev Tools via the Stetho package from Facebook.
Note: It's probably a good idea only put this override in a main_dev.dart file.
void main() {
Stetho.initialize();
runApp(new MyApp());
}
flutter run
Pop open Chrome or Chromium, navigate to chrome://inspect
You should now see your App appear in the window.
flutter clean to remove old builds.