Widget build(BuildContext context) {
return Container(
width: 100,
height: 180,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(15),
boxShadow: [
BoxShadow(
color: Color.fromARGB(26, 0, 0, 0),
offset: const Offset(0, 8),
blurRadius: 24,
spreadRadius: 1,
)
]),
child: Padding(
padding: EdgeInsets.only(left: 5, right: 5),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Image.network(
"
https://firebasestorage.googleapis.com/v0/b/lotosfirebase.appspot.com/o/tst_200.png?alt=media&token=28b4a992-3cb0-4eb9-8681-04af10d9d5a9"),
Text(
"Конфеты",
style: UserTextStyle.textSmall(context),
),
Text(
'"Батончик"',
style: UserTextStyle.textSmall(context),
),
Text(
"120 г.",
style: UserTextStyle.textSmall(context),
),
SizedBox(
height: 10,
),
Text(
"120.45",
style: UserTextStyle.mediumSmall(context),
),
],
),
),
);
}