customHeaderWide method
Implementation
Widget customHeaderWide() {
return Expanded(
child: Row(
children: [
Expanded(
flex: 5,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
"Booking Requests",
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.w600,
color: ColorHelper.black02,
),
),
8.dp.SpaceX,
Text(
"View and manage all incoming booking requests, including passenger details, travel dates, and destinations. Approve, reject, or modify requests efficiently with search and filter options. \n Dashboard updates every 60 seconds",
style: TextStyle(
fontSize: 14.dp,
fontWeight: FontWeight.w400,
color: ColorHelper.neutralText02,
),
),
],
),
),
const Expanded(
flex: 2,
child: SizedBox(),
),
_refreshIcon()
],
),
);
}