customHeader method

Widget customHeader()

Implementation

Widget customHeader() {
  return Expanded(
    child: Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      children: [
        Text(
          "Accounting",
          style: TextStyle(
            fontSize: 28,
            fontWeight: FontWeight.w600,
            color: ColorHelper.black02,
          ),
        ),
      ],
    ),
  );
}