Skip to content

Instantly share code, notes, and snippets.

@hl3hl3
Last active October 26, 2019 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hl3hl3/734dd9acbebe53c5c30f9957e8d9b722 to your computer and use it in GitHub Desktop.
Save hl3hl3/734dd9acbebe53c5c30f9957e8d9b722 to your computer and use it in GitHub Desktop.
Draggable example
Draggable(
child: Container(
width: 100,
height: 100,
color:
Colors.orange,
),
feedback: Container(
width: 100,
height: 100,
color: Colors.orange,
),
childWhenDragging: Container(
width: 100,
height: 100,
color: Colors.deepOrange,
),
data: Colors.orange,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment