buildNotModifyTitle method

Widget buildNotModifyTitle()

Implementation

Widget buildNotModifyTitle() {
  return Container(
    height: 56,
    color: Colors.white,
    alignment: Alignment.centerLeft,
    padding: EdgeInsets.symmetric(horizontal: 20),
    child: Text(
      _arguments.live.title ?? '',
      style: TextStyle(fontSize: 16, color: UIColors.black_222222),
    ),
  );
}