customHeaderMobile method
Implementation
Widget customHeaderMobile() {
return Expanded(
child: Row(
children: [
const Text(
"Booking Requests",
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.w600,
color: ColorHelper.black02,
),
),
const Spacer(),
_refreshIcon(),
],
),
);
}