dev 1.0.0 copy "dev: ^1.0.0" to clipboard
dev: ^1.0.0 copied to clipboard

Dev tools and widgets for Flutter applications.

Dev Tools #

pub package

Dev tools and widgets for Flutter applications.

How to use #

In your pubspec.yaml:

dependencies:
  dev: ^1.0.0
import 'package:dev/dev.dart';

Basic construction of the widget:

Widget build(BuildContext context) {
  return DevMenu(
    gestures: [
      GestureLine(AxisDirection.down),
      GestureLine(AxisDirection.right),
      GestureLine(AxisDirection.up),
    ],
    onGestureEnd: (success) {
      if (success) {
        // TODO: your action here..
      }
    },
    body: Container(),
    devMenu: Text('Dev Menu'),
  );
}

License #

Licensed under the MIT license.

1
likes
140
points
10.8k
downloads

Publisher

verified publisherandrebaltazar.com

Weekly Downloads

Dev tools and widgets for Flutter applications.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, gestures

More

Packages that depend on dev