merge material 3

This commit is contained in:
tzw
2024-01-25 17:40:35 +06:30
parent 18053cbe3c
commit 991ecd7ae6
70 changed files with 572 additions and 1377 deletions

View File

@@ -155,6 +155,7 @@ class _PackageInfoState extends State<PackageInfo> {
),
),
body: Card(
elevation: 0,
child: Column(
children: <Widget>[
Expanded(
@@ -177,9 +178,12 @@ class _PackageInfoState extends State<PackageInfo> {
widget.isSearchResult ? Container() : deliveryAddressBox,
widget.isSearchResult
? Container()
: StatusTree(
shipmentHistory: _package!.shipmentHistory,
currentStatus: _package!.status),
: Padding(
padding: const EdgeInsets.only(top: 15),
child: StatusTree(
shipmentHistory: _package!.shipmentHistory,
currentStatus: _package!.status),
),
SizedBox(
height: 20,
)