legacy_draggable_dialog 0.0.2
legacy_draggable_dialog: ^0.0.2 copied to clipboard
A draggable dialog helper for Flutter. You can use it to create a fully customizable dialog with a draggable header. Stays within the bounds of the screen.
A draggable dialog helper for Flutter.
Features #
- Draggable dialog with a draggable header.
- Highly customizable dialog with a header, content, and footer.
- The dialog can be dismissed by swiping it down.
Getting started #
Add the following dependency to your pubspec.yaml file:
dependencies:
legacy_draggable_dialog: ^0.0.1
Usage #
DraggableDialog(
body: const Text('Hello World'),
onDragUpdate: (details) {},
)