actionPanel method

Widget actionPanel(
  1. UpdatableContext uc,
  2. List<Widget> items
)

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)),
      );
}