jane 0.0.2 copy "jane: ^0.0.2" to clipboard
jane: ^0.0.2 copied to clipboard

A debugging tool for developers to manage environments, page and widget view testing.

A flutter debugging tool for the developers to manage the environments and widgets view testing.

Features #

Getting started #

flutter pub get jane

Usage #

Add Jane wrapper at the top of home

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: JaneWrapper(
        builder: (context) {
          return const MyHomePage(title: 'Flutter Demo Home Page');
        },
        // Create your own view by adding the environment variables
        // - Api environments
        // - Ongoing testing pages
        janeContent: Text('Test'),
      ),
    );
  }
}

Additional information #

More information can be get from the original github of the PIPView https://github.com/lslv1243/pip_view

2
likes
140
points
26
downloads

Documentation

API reference

Publisher

verified publisherfiekzz.com

Weekly Downloads

A debugging tool for developers to manage environments, page and widget view testing.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on jane