nconsole 1.0.0
nconsole: ^1.0.0 copied to clipboard
A package to help you debug your Flutter app on the fly.
nconsole #
A library for show log in console
Getting Started #
[Demo NConsole]
Installation #
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,
});
}