jane 0.0.3 copy "jane: ^0.0.3" to clipboard
jane: ^0.0.3 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');
        },
        contentNavigator: () {
          Navigator.push(
            context,
            MaterialPageRoute(builder: (_) => DebugPage()),
          );
        },
      ),
    );
  }
}

Additional information #

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

2
likes
140
points
24
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