Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 629 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 629 Bytes

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,
  });
}