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

outdated

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: ^0.0.2
import 'package:dev/dev.dart';

Basic construction of the widget:

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
20
pub points
93%
popularity

Publisher

verified publisherandrebaltazar.com

Dev tools and widgets for Flutter applications.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, gestures

More

Packages that depend on dev