Files
fcs/lib/pages/shipment/box_row.dart

116 lines
4.7 KiB
Dart
Raw Normal View History

2020-10-18 02:38:46 +06:30
import 'package:fcs/domain/entities/carton.dart';
2020-10-13 07:50:25 +06:30
import 'package:flutter/material.dart';
class BoxRow extends StatelessWidget {
2020-10-18 02:38:46 +06:30
final Carton box;
2020-10-13 07:50:25 +06:30
2021-09-10 16:48:21 +06:30
const BoxRow({Key? key, required this.box}) : super(key: key);
2020-10-13 07:50:25 +06:30
@override
Widget build(BuildContext context) {
return Container(
padding: EdgeInsets.only(left: 10),
child: Column(
children: <Widget>[
Row(
children: <Widget>[
Expanded(
child: new Padding(
padding: const EdgeInsets.symmetric(vertical: 10.0),
child: new Row(
children: <Widget>[
new Expanded(
child: new Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-18 02:38:46 +06:30
box.deliveryAddress?.fullName ?? "",
2020-10-13 07:50:25 +06:30
style: new TextStyle(
fontSize: 15.0,
color: Colors.black,
fontWeight: FontWeight.bold),
),
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-18 02:38:46 +06:30
box.deliveryAddress?.addressLine1 ?? "",
2020-10-13 07:50:25 +06:30
style: new TextStyle(
fontSize: 14.0, color: Colors.grey),
),
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-18 02:38:46 +06:30
box.deliveryAddress?.addressLine2 ?? "",
2020-10-13 07:50:25 +06:30
style: new TextStyle(
fontSize: 14.0, color: Colors.grey),
),
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-18 02:38:46 +06:30
box.deliveryAddress?.city ?? "",
2020-10-13 07:50:25 +06:30
style: new TextStyle(
fontSize: 14.0, color: Colors.grey),
),
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-18 02:38:46 +06:30
box.deliveryAddress?.state ?? "",
2020-10-13 07:50:25 +06:30
style: new TextStyle(
fontSize: 14.0, color: Colors.grey),
),
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-18 02:38:46 +06:30
box.deliveryAddress?.phoneNumber ?? "",
2020-10-13 07:50:25 +06:30
style: new TextStyle(
fontSize: 14.0, color: Colors.grey),
),
),
],
),
),
],
),
),
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
2020-10-19 05:13:49 +06:30
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
"${box.cartonNumber ?? ""}",
style: new TextStyle(fontSize: 15.0, color: Colors.black),
),
),
2020-10-13 07:50:25 +06:30
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
2020-10-16 10:58:31 +06:30
"L${box.length}xW${box.width}xH${box.height}",
2020-10-13 07:50:25 +06:30
style: new TextStyle(fontSize: 15.0, color: Colors.black),
),
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: new Text(
"Actual Weight:${box.actualWeight.toStringAsFixed(2)}lb",
2020-10-13 07:50:25 +06:30
style: new TextStyle(fontSize: 14.0, color: Colors.grey),
),
),
],
)
],
),
],
),
);
}
}