Export Logs Extension for In-App Console

A Flutter plugin that adds log export functionality to the in_app_console package. Export your app logs to a file with just one tap.

What does it do?

This extension adds two actions to your in-app console:

  • Save as file — writes all console logs to a .txt file via the native file picker dialog
  • Share — shares the log file through the system share sheet

Each export includes timestamps, log levels, module labels, error messages, and stack traces.

Screenshots

Register the extension

InAppConsole.instance.registerExtension(
  InAppConsoleExportLogsExtension(),
);