Change discount label font size

This commit is contained in:
Moe Poi ~ 2023-11-18 16:25:10 +07:00
parent ae7d84443d
commit f136329a5d

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)))),
],
)
])