logcat

Last updated:

0 purchases

logcat Image
logcat Images
Add to Cart

Description:

logcat

logcat #
Flutter plugin to get system messages, stack traces etc and show them in app. Can also be used to get the app logs from a remote device with share plugin.
Call Logcat.exec() from anywhere to get logs as a Future String then use it in anyway within your app.
NOTE: This plugin fetches logs only on Android Devices presently.
Installation #
Add package to pubspec.yaml
logcat: ^1.0.2
copied to clipboard
Add Import
import 'package:logcat/logcat.dart';
copied to clipboard
Use it anywhere
Future<void> _getLogs() async {
final String logs = await Logcat.execute();
setState(() {
// Update your UI
});
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.