golog 0.0.2+1 copy "golog: ^0.0.2+1" to clipboard
golog: ^0.0.2+1 copied to clipboard

outdated

View custom logger inside app. Works on debug and release mode.

Golog #

Pub.dev Badge GitHub Build Badge Apache 2.0 License Badge Flutter Platform Badge

View custom logger inside app. Works on debug and release.

Features #

Screenshot 1 Screenshot 2

Getting started #

flutter pub add golog

Usage #

  • Add Golog.builder() to your MaterialApp:
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      builder: Golog.builder(),
    );
  }
}
  • Send your custom log using:
Golog.add('my log title', body: '{"hello":"this body is optional"}');
  • Get log list using:
Golog.list();
  • Tap item to see the body, tap again to copy its value to clipboard.

Additional information #

Contributions of any kind are welcome. Feel free to improve the library by creating a pull request or opening an issue.

1
likes
0
points
48
downloads

Publisher

verified publisherdigitalservice.id

Weekly Downloads

View custom logger inside app. Works on debug and release mode.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on golog