Если у меня есть структура типа ниже, могу ли я сделать перетаскивание для сортировки этих 3 строк друг на друга?
body: SingleChildScrollView(
child: Container(
child: Column(children: <Widget>[
Row(children: <Widget>[Container ( child: Container(....))]) // static
Row(children: <Widget>[Container ( child: Card(....))]) // will be draggable
Row(children: <Widget>[Container ( child: Card(....))]) // will be draggable
Row(children: <Widget>[Container ( child: Card(....))]) // will be draggable
Row(children: <Widget>[Container ( child: Container(....))]) // static
]
)
)
)