add home screen and shipping addresses

This commit is contained in:
Thinzar Win
2020-06-24 16:06:40 +06:30
parent 752e38edf2
commit 6f6bd20e3e
17 changed files with 698 additions and 169 deletions

View File

@@ -1,4 +1,5 @@
import 'package:fcs/vo/shipment.dart';
import 'package:fcs/vo/shipping_address.dart';
import 'base_model.dart';
@@ -74,6 +75,23 @@ class ShipmentModel extends BaseModel {
return _shipments;
}
List<ShippingAddress> shippingAddresses = [
ShippingAddress(
fullName: 'FCS-0203-390-2',
addressLine1: '154-19 64th Ave.',
addressLine2: 'Flushing',
city: 'NY',
state: 'NY',
phoneNumber: '+1 (292)215-2247'),
ShippingAddress(
fullName: 'FCS-0204-390-2',
addressLine1: '153-154 5th Thitsar.',
addressLine2: 'Flushing',
city: 'Yangon',
state: 'Yangon',
phoneNumber: '+09 5724 87508'),
];
void initUser(user) {
super.initUser(user);
}