Container(
child: Text(
items[index].itemName,
style: TextStyle(
color: Colors.black, fontSize: 30),
textAlign: TextAlign.center,
), //Text
height: 40,
width: 400,
decoration:
BoxDecoration(
border: Border.all(color: Colors.black38, width: 3),
borderRadius: BorderRadius.circular(20),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 5,
offset: Offset(0, 3), // changes position of shadow
),
],
color: Colors.white,
image: DecorationImage(
image: AssetImage(filterList[index].itemImg),
fit: BoxFit.contain,
),
),
Comments