Horizontal ListView flutter WITHOUT explicit height
Posting answer for OP who edited their answer into their question Solved the problem by creating a custom builder method like so: Widget _buildFeaturedCards(List<Product> product) { final cards = <Widget>[]; Widget FeautredCards; if (product.length > 0) { for (int i = 0; i < product.length; i++) { cards.add(FeaturedCard(product[i])); print(product.length); } FeautredCards = Container( padding: EdgeInsets.only(top: … Read more