Booking
Booking
dart';
// Location section
Row(
children: [
Text(
'Location:',
style: TextStyle(
fontSize: 16.0,
fontWeight: FontWeight.bold,
),
),
SizedBox(width: 8.0),
Text('Field Location'),
],
),
SizedBox(height: 8.0),
// Button section
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
ElevatedButton(
onPressed: () {},
child: Text('CANCEL'),
style: ElevatedButton.styleFrom(
primary: Colors.red,
textStyle: TextStyle(
color: Colors.white,
fontSize: 16.0,
),
),
),
ElevatedButton(
onPressed: () {},
child: Text('CONFIRM'),
style: ElevatedButton.styleFrom(
primary: Colors.green,
textStyle: TextStyle(
color: Colors.white,
fontSize: 16.0,
),
),
),
],
),
],