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

122 lines
5.0 KiB
Dart
Raw Normal View History

2020-10-13 07:50:25 +06:30
import 'package:fcs/domain/entities/box.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class BoxRow extends StatelessWidget {
final Box box;
const BoxRow({Key key, this.box}) : super(key: key);
@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-16 10:58:31 +06:30
box.deliveryAddress.fullName == null
2020-10-13 07:50:25 +06:30
? ''
2020-10-16 10:58:31 +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-16 10:58:31 +06:30
box.deliveryAddress.addressLine1 == null
2020-10-13 07:50:25 +06:30
? ''
2020-10-16 10:58:31 +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-16 10:58:31 +06:30
box.deliveryAddress.addressLine2 == null
2020-10-13 07:50:25 +06:30
? ''
2020-10-16 10:58:31 +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-16 10:58:31 +06:30
box.deliveryAddress.city == null
2020-10-13 07:50:25 +06:30
? ''
2020-10-16 10:58:31 +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-16 10:58:31 +06:30
box.deliveryAddress.state == null
2020-10-13 07:50:25 +06:30
? ''
2020-10-16 10:58:31 +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-16 10:58:31 +06:30
box.deliveryAddress.phoneNumber == null
2020-10-13 07:50:25 +06:30
? ''
2020-10-16 10:58:31 +06:30
: "Phone:${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>[
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(
2020-10-16 10:58:31 +06:30
"Actual Weight:${box.actualWeight.toString()}lb",
2020-10-13 07:50:25 +06:30
style: new TextStyle(fontSize: 14.0, color: Colors.grey),
),
),
],
)
],
),
],
),
);
}
}