112 lines
3.4 KiB
Dart
112 lines
3.4 KiB
Dart
import 'dart:convert';
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:flutter/material.dart';
|
|
import 'package:responsive_builder/responsive_builder.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import '../../config/apiUrl.dart';
|
|
import '../../data/models/plan.dart';
|
|
|
|
|
|
class BusListWidget extends StatelessWidget{
|
|
final List<Map<String, dynamic>> busList;
|
|
final Function(bool, Map<String, dynamic>, String) onOpen;
|
|
final Function(Map<String,dynamic>) onDeleteBus;
|
|
const BusListWidget({super.key, required this.busList, required this.onOpen, required this.onDeleteBus});
|
|
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Bus Booking List",
|
|
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Container(
|
|
// color: Colors.blueGrey,
|
|
width: double.infinity,
|
|
child: Center(
|
|
child: SingleChildScrollView(
|
|
scrollDirection: Axis.horizontal,
|
|
child: Expanded(
|
|
child: SizedBox(
|
|
width: MediaQuery.of(context).size.width ,
|
|
child: DataTable(
|
|
border: TableBorder(
|
|
bottom: BorderSide(color: Colors.black12),
|
|
horizontalInside: BorderSide(color: Colors.black12), // Only horizontal lines
|
|
),
|
|
columns: const [
|
|
|
|
// DataColumn(label: Text('#')),
|
|
DataColumn(label: Text('From')),
|
|
DataColumn(label: Text('To')),
|
|
DataColumn(label: Text('Date')),
|
|
DataColumn(label: Text('Time')),
|
|
|
|
DataColumn(label: Text('Actions')),
|
|
],
|
|
rows: _buildDataRows(),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
|
|
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
List<DataRow> _buildDataRows() {
|
|
|
|
List<Map<String, dynamic>> filteredList = busList
|
|
.where((item) => item["is_active"] == "1")
|
|
.toList();
|
|
print("filteredList- $filteredList");
|
|
|
|
|
|
return filteredList.asMap().entries.map((entry) {
|
|
|
|
final Map<String, dynamic> item = entry.value;
|
|
|
|
return DataRow(cells: [
|
|
// DataCell(Text(item["indx"]?.toString() ?? "N/A")), // Index column
|
|
DataCell(Text(item["from"]!)),
|
|
DataCell(Text(item["to"]!)),
|
|
DataCell(Text(item["date"]!)),
|
|
DataCell(Text(item["time"]!)),
|
|
DataCell(Row(
|
|
children: [
|
|
IconButton(
|
|
icon: Icon(Icons.remove_red_eye, color: Colors.blue),
|
|
onPressed: () {
|
|
// View action
|
|
},
|
|
),
|
|
IconButton(
|
|
icon: Icon(Icons.edit, color: Colors.green),
|
|
onPressed: () {
|
|
onOpen(true, item, "Bus");
|
|
},
|
|
),
|
|
IconButton(
|
|
icon: Icon(Icons.delete, color: Colors.red),
|
|
onPressed: () {
|
|
onDeleteBus(item);
|
|
},
|
|
),
|
|
],
|
|
)),
|
|
]);
|
|
}).toList();
|
|
}
|
|
}
|