jh_debug 0.3.0 copy "jh_debug: ^0.3.0" to clipboard
jh_debug: ^0.3.0 copied to clipboard

outdated

jh_debug! The debugging plug-in above the APP. Easy-to-use console plugin, More feature details....

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:jh_debug/jh_debug.dart';
import 'TestPage.dart';

import 'DetailsPage.dart';

void main() {
  jhDebugMain(
    appChild: MyApp(),
    debugMode: DebugMode.inConsole,
  );
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      // home: TestPage(),
      routes: {
        '/': (BuildContext context) => TestPage(),
        '/detailsPage': (BuildContext context) => DetailsPage(),
      },
    );
  }
}
7
likes
0
pub points
80%
popularity

Publisher

unverified uploader

jh_debug! The debugging plug-in above the APP. Easy-to-use console plugin, More feature details....

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, fluttertoast, shared_preferences, synchronized

More

Packages that depend on jh_debug