logger_lite 1.0.1 copy "logger_lite: ^1.0.1" to clipboard
logger_lite: ^1.0.1 copied to clipboard

Lightweight Flutter logger with customizable formatting and separators.

example/lib/main.dart

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

void main() {}

class SmartLoggerExample extends StatelessWidget {
  const SmartLoggerExample({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text(
          'LoggerLite Example',
        ),
        centerTitle: true,
      ),
      body: Center(
        child: ElevatedButton(
          onPressed: () {
            LoggerLite.log('Logging From LoggerLite');
          },
          child: const Text("Log Data"),
        ),
      ),
    );
  }
}
3
likes
130
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

Lightweight Flutter logger with customizable formatting and separators.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on logger_lite