fluto 0.1.1 copy "fluto: ^0.1.1" to clipboard
fluto: ^0.1.1 copied to clipboard

Fluto is an on-device debugging framework for Flutter applications.

fluto #

Fluto is an on-device debugging framework for Flutter applications, which helps in the inspection of HTTP requests/responses, captures Crashes, and ANRs, and manipulates application data on the go.

You can create your own plugin by extended from Pluggable abstract class available in fluto_plugin_platform_interface

It comes with a UI to monitor and share the information, as well as APIs to access and use that information in your application.

Sample usage: #

void main() {
  FlutoPluginManager.registerAllPlugins([
    ScreenLauncherPlugin(
      devIdentifier: 'one',
      screen: Scaffold(
        appBar: AppBar(title: const Text("first screen")),
        body: const Text("first screen"),
      ),
      name: "first screen",
    )
  ]);

  runApp(Fluto(navigatorKey: navigatorKey, child: const MyApp()));
}

Issues #

Please file any issues, bugs or feature requests as an issue on our GitHub page. Commercial support is available, you can contact us at [email protected].

Want to contribute #

If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please send us your pull request.

Author #

This Geolocator plugin for Flutter is developed by Shashank Gupta.

2
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Fluto is an on-device debugging framework for Flutter applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

draggable_widget, fluto_plugin_platform_interface, flutter, provider

More

Packages that depend on fluto