dev

Creator: coderz1093

Last updated:

Add to Cart

Description:

dev

Dev Tools #

Dev tools and widgets for Flutter applications.
How to use #
In your pubspec.yaml:
dependencies:
dev: ^1.0.0
copied to clipboard
import 'package:dev/dev.dart';
copied to clipboard
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'),
);
}
copied to clipboard
License #
Licensed under the MIT license.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.