actionPanel method
Implementation
Widget actionPanel(UpdatableContext uc, List<Widget> items) {
return RowMax(items, mainAxisAlignment: MainAxisAlignment.spaceAround)
.padded(xy(10, 8))
.shapeDecorated(
shape: Border(top: BorderSide(color: uc.themeData.dividerColor)),
);
}