reorderables
reorderables copied to clipboard
ReorderableTableRow style
Is it possible to style the ReorderableTableRow?
I try to use the decoration in ReorderableTableRow but its not working as expected
```
return ReorderableTableRow( //a key must be specified for each row decoration: BoxDecoration( color: Colors.teal, border: Border.all( color: Colors.black, width: 8, ), ), key: ObjectKey(myWine), mainAxisSize: MainAxisSize.max, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: <Widget>[ _imageItem(myWine.image), _wineItem(myWine.name), _yearItem(myWine), _wineryItem(myWine.winery), _priceItem(myWine), _availableItem(myWine.id, myWine), _recommendedItem(myWine.id, myWine), _deleteItem(myWine.id), ], );