Skip to content

nghinv-software/nconsole-flutter

Repository files navigation

nconsole

A library for show log in console

Getting Started

Demo NConsole

Installation

App desktop download NConsole

flutter pub add nconsole

Usages

import 'package:nconsole/nconsole.dart';

void main() {
  if (Platform.isAndroid) {
    NConsole.setUri("ip_address");
  }
  NConsole.isEnable = true;

  NConsole.log('Hello, World!');
  NConsole.log("data--->", {
    "name": "alex",
    "old": 12,
  });
}