From f136329a5dfdb61a93e792bdcd12e50eaddebc69 Mon Sep 17 00:00:00 2001 From: Moe Poi ~ Date: Sat, 18 Nov 2023 16:25:10 +0700 Subject: [PATCH] Change discount label font size --- lib/components/product_box.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/components/product_box.dart b/lib/components/product_box.dart index 7b6b5ca..c55f7c7 100644 --- a/lib/components/product_box.dart +++ b/lib/components/product_box.dart @@ -94,7 +94,8 @@ class _ProductBoxState extends State { child: Center( child: Text("${widget.discount}% off", style: const TextStyle( - color: Colors.white)))), + color: Colors.white, + fontSize: 11.0)))), ], ) ])