vertical method

Widget vertical()

vertical is a widget that encapsulates the field, icons, and preview in a column.

Implementation

Widget vertical() {
  return Column(
    children: [
      field,
      icons,
      Flexible(
        child: preview,
      ),
    ],
  );
}