iaAppBar method

AppBar iaAppBar({
  1. required String title,
  2. TextStyle style = const TextStyle(fontSize: 16, color: Colors.white, fontWeight: FontWeight.w600),
})

Implementation

AppBar iaAppBar({
  required String title,
  TextStyle style = const TextStyle(
    fontSize: 16,
    color: Colors.white,
    fontWeight: FontWeight.w600,
  ),
}) {
  return AppBar(
    title: Text(
      title,
      style: style,
    ),
    backgroundColor: Theme.of(_ctx).primaryColor,
  );
}