centerText static method

Widget centerText(
  1. String text
)

Implementation

static Widget centerText(String text)
{
  return Center(
    child: Text(text),
  );
}