add buttons in shipment info page

This commit is contained in:
sma
2024-01-31 16:20:59 +06:30
parent 00f76c0341
commit 1dcc641352
6 changed files with 66 additions and 16 deletions

View File

@@ -71,15 +71,16 @@ class _LocalPopupMenuButtonState extends State<LocalPopupMenuButton> {
height: 30,
decoration: new BoxDecoration(
shape: BoxShape.circle,
color: Colors.white,
//color: Colors.white,
),
child: Stack(
fit: StackFit.expand,
children: <Widget>[
Icon(
widget.buttonIcon ?? Icons.filter_list,
color: widget.buttonColor,
color: Colors.white,
),
hightlight
? Positioned(
bottom: 0,
@@ -89,7 +90,7 @@ class _LocalPopupMenuButtonState extends State<LocalPopupMenuButton> {
height: 10,
decoration: new BoxDecoration(
shape: BoxShape.circle,
color: secondaryColor,
color: secondaryColor,
),
),
)
@@ -118,7 +119,8 @@ class _LocalPopupMenuButtonState extends State<LocalPopupMenuButton> {
Icons.check,
color: Colors.grey,
)
: Container(),
: Container(
),
],
),
);