АС

return Scaffold(
appBar: AppBar(
backgroundColor: mainColor,
// elevation: 0.1,
title: Text(
'Жаңалықтар',
style: TextStyle(fontSize: 22),
),
),
body: ListView.builder(
itemBuilder: (BuildContext context, int index) {
Feed feed = feeds[index];
return _build(context, feed);
},
itemCount: feeds.length),
);