hotel master category added

This commit is contained in:
venba-Inspriron-3558 2025-08-04 18:07:28 +05:30
parent 5a776c39d0
commit 6f85000d9d

View File

@ -234,6 +234,8 @@ class HotelsDataListState extends State<HotelsDataList> {
false) ||
(hotels['country_name']?.toLowerCase().contains(lowerQuery) ??
false) ||
(hotels['category']?.toLowerCase().contains(lowerQuery) ??
false) ||
(hotels['city']?.toLowerCase().contains(lowerQuery) ?? false) ||
(hotels['hotel_chain']?.toLowerCase().contains(lowerQuery) ??
false) ||
@ -606,6 +608,15 @@ class HotelsDataListState extends State<HotelsDataList> {
),
),
),
DataColumn(
label: Text(
'Category',
style: GoogleFonts.poppins(
fontSize: 13,
fontWeight: FontWeight.w600,
),
),
),
DataColumn(
label: Text(
'City',
@ -672,6 +683,15 @@ class HotelsDataListState extends State<HotelsDataList> {
),
),
),
DataCell(
Text(
hotels['category'] ?? '',
style: TextStyle(
fontSize: 13,
fontFamily: "Inter",
),
),
),
DataCell(
Text(
hotels['city'] ?? 'N/A',
@ -868,6 +888,25 @@ class HotelsDataListState extends State<HotelsDataList> {
],
),
SizedBox(height: 2),
Row(
children: [
Column(
crossAxisAlignment:
CrossAxisAlignment.start,
children: [
Text(
"${hotels['category'] ?? ''} ",
style: GoogleFonts.poppins(
fontSize: 12,
color: Colors.black87,
fontWeight: FontWeight.w500,
),
),
],
),
],
),
SizedBox(height: 2),
Row(
children: [
Column(