dev 0.0.2 dev: ^0.0.2 copied to clipboard
Dev tools and widgets for Flutter applications.
Dev Tools #
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.