Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 616 Bytes

README.md

File metadata and controls

41 lines (26 loc) · 616 Bytes

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