flu_console 1.0.0
flu_console: ^1.0.0 copied to clipboard
It can print the logs generated by the flutter application to the mobile phone screen in real time, without the development tools, to better help analyze the logs.
flu_console #
Display the flutter log on the app
Getting Started #
- step 1
FluConsole.run(() {
runApp(const App());
});
//or
FluConsole.run(() {
runApp(const App());
},enableLog: true);
- step 2
FluConsole.showConsoleButton(context);
// or
Navigator.of(ctx).push(PageNavAnimBuilder(const LogPrintPanel()));
ScreenShot #