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

Libraries

jane