debug_logger 0.0.23 copy "debug_logger: ^0.0.23" to clipboard
debug_logger: ^0.0.23 copied to clipboard

A liteweight utility used for logging values to debug console.

example/main.dart

import 'package:debug_logger/debug_logger.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const DebugLoggerExample());
}

class DebugLoggerExample extends StatefulWidget {
  /// This widget is the root of your application.
  const DebugLoggerExample({Key? key}) : super(key: key);

  @override
  _DebugLoggerExampleState createState() => _DebugLoggerExampleState();
}

class _DebugLoggerExampleState extends State<DebugLoggerExample> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      /// This call to setState tells the Flutter framework that something has
      /// changed in this State, which causes it to rerun the build method below
      /// so that the display can reflect the updated values. If we changed
      /// _counter without calling setState(), then the build method would not be
      /// called again, and so nothing would appear to happen.
      _counter++;
      DebugLogger.debug(_counter);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Debug Logger example'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ),
    );
  }
}
9
likes
110
pub points
64%
popularity

Publisher

verified publishersavannahghi.org

A liteweight utility used for logging values to debug console.

Repository (GitHub)
View/report issues
Contributing

Documentation

Documentation
API reference

License

MIT (LICENSE)

Dependencies

flutter, logger

More

Packages that depend on debug_logger