Let flutter print logs to display on the phone
FluConsole.run(() {
runApp(const App());
});
//or passing in 'enableLog' parameters
FluConsole.run(() {
runApp(const App());
},enableLog: true);
FluConsole.showConsoleButton(context);
// or
Navigator.of(ctx).push(PageNavAnimBuilder(const LogPrintPanel()));
cd ./example
flutter run