getAppBar static method

PreferredSizeWidget? getAppBar(
  1. String text
)

Implementation

static PreferredSizeWidget? getAppBar(String text) {
  return AppBar(
    leading: null,
    title: Text(text),
    backgroundColor: themeColor,
  );
}