const constructure
This commit is contained in:
@@ -50,7 +50,7 @@ class _OrderMenuState extends State<OrderMenu> {
|
||||
child: ListTile(
|
||||
contentPadding: EdgeInsets.zero,
|
||||
leading: ClipRRect(
|
||||
borderRadius: BorderRadius.all(Radius.circular(8.0)),
|
||||
borderRadius: const BorderRadius.all(Radius.circular(8.0)),
|
||||
child: AppNetworkImage(
|
||||
url: widget.data.product.imageUrl,
|
||||
width: 50.0,
|
||||
@@ -150,7 +150,7 @@ class _OrderMenuState extends State<OrderMenu> {
|
||||
),
|
||||
],
|
||||
),
|
||||
SpaceHeight(8.0),
|
||||
const SpaceHeight(8.0),
|
||||
SizedBox(
|
||||
height: 40,
|
||||
child: Row(
|
||||
@@ -160,7 +160,9 @@ class _OrderMenuState extends State<OrderMenu> {
|
||||
cursorColor: AppColor.primary,
|
||||
controller: _controller,
|
||||
style: const TextStyle(fontSize: 12, color: AppColor.black),
|
||||
decoration: InputDecoration(hintText: 'Catatan Pesanan'),
|
||||
decoration: const InputDecoration(
|
||||
hintText: 'Catatan Pesanan',
|
||||
),
|
||||
),
|
||||
),
|
||||
const SpaceWidth(16.0),
|
||||
@@ -180,7 +182,10 @@ class _OrderMenuState extends State<OrderMenu> {
|
||||
color: AppColor.primary,
|
||||
borderRadius: BorderRadius.circular(8.0),
|
||||
),
|
||||
child: Icon(Icons.delete_outline, color: AppColor.white),
|
||||
child: const Icon(
|
||||
Icons.delete_outline,
|
||||
color: AppColor.white,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user