Я поставил конец цвета, цвет работает, но я бы предпочел поставить изображение
backgroundColor: Colors.purple,
body:
Column(
children: <Widget>[
//3shan l swr ele btt8yer fo2
Container(
height: 150.0,
child: Carousel(
boxFit: BoxFit.cover,
images: [
AssetImage('images/pic1.jpeg'),
AssetImage('images/pic2.jpeg'),
AssetImage('images/pic3.jpeg'),
AssetImage('images/pic4.jpeg'),
AssetImage('images/pic5.jpeg'),
AssetImage('images/pic6.jpeg'),
],
autoplay: true,
animationCurve: Curves.fastOutSlowIn,
animationDuration: Duration(milliseconds: 1000),
dotSize: 4.0,
indicatorBgPadding: 3.0,
dotIncreasedColor: Colors.black,
),
),
Divider(color: Colors.black ),
Padding(
padding: EdgeInsets.all(10.0),
child: Container(
alignment: Alignment.topLeft,
child: Text(
'Products',
style:
TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
),
),
),
//grid view
// l list ele bt3rd l 7gat
Flexible(
child: prodcuts(
counterToGetCategory,widget.loginUserId,widget.attributeMap
),
),
],
),
);
}