Iam developing an ecommerce app with the items to add and remove button below the product image in gridview. Inbetween the button, i have a text widget to show the number of items for add and remove.The problem is the text widget is not displaying inbetwen.
Padding(
padding: const EdgeInsets.only(right: 8, top: 10),
child: SizedBox(
child: Text(
'${item == null ? 0 : item}',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w600,
color: Colors.black),
),
),
),