appBarCenter static method

PreferredSizeWidget appBarCenter(
  1. String title
)

SimpleAppBar with center title

Implementation

static PreferredSizeWidget appBarCenter(String title) {
  return AppBar(
    title: Text(title),
    centerTitle: true,
  );
}