Change discount label font size

This commit is contained in:
Moe Poi ~ 2023-11-18 16:44:29 +07:00
parent 98877e016e
commit 98e47c0054

View file

@ -94,7 +94,8 @@ class _ProductBoxState extends State<ProductBox> {
child: Center(
child: Text("${widget.discount}% off",
style: const TextStyle(
color: Colors.white)))),
color: Colors.white,
fontSize: 11.0)))),
],
)
])