flu_console 1.1.0 copy "flu_console: ^1.1.0" to clipboard
flu_console: ^1.1.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 #

Let flutter print logs to display on the phone

Getting Started #

step 1: init #


    FluConsole.run(() {
        runApp(const App());
    });

    //or passing in 'enableLog' parameters

    FluConsole.run(() {
        runApp(const App());
    },enableLog: true);

step 2: show console enter button or show console Panel #

   
    FluConsole.showConsoleButton(context);
    // or 
    Navigator.of(ctx).push(PageNavAnimBuilder(const LogPrintPanel()));

run example #

cd ./example
flutter run

ScreenShot #

2
likes
140
pub points
51%
popularity

Publisher

unverified uploader

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.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flu_console