add update shipments
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import 'package:fcs/domain/entities/box.dart';
|
||||
import 'package:fcs/pages/box/box_editor.dart';
|
||||
import 'package:fcs/domain/entities/carton.dart';
|
||||
import 'package:fcs/pages/main/util.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
@@ -8,7 +7,7 @@ import 'package:intl/intl.dart';
|
||||
import 'delivery_info.dart';
|
||||
|
||||
class DeliveryListRow extends StatefulWidget {
|
||||
final Box box;
|
||||
final Carton box;
|
||||
const DeliveryListRow({this.box});
|
||||
|
||||
@override
|
||||
@@ -17,7 +16,7 @@ class DeliveryListRow extends StatefulWidget {
|
||||
|
||||
class _DeliveryListRowState extends State<DeliveryListRow> {
|
||||
final double dotSize = 15.0;
|
||||
Box _box = new Box();
|
||||
Carton _box = new Carton();
|
||||
final DateFormat dateFormat = new DateFormat("dd MMM yyyy");
|
||||
|
||||
@override
|
||||
|
||||
Reference in New Issue
Block a user