skip to Main Content

Flutter – Center ListView.builder elements

I want to make these elements in the middle and I want the code to be formatted correctly Container( height: 100, child: ListView.builder( physics: NeverScrollableScrollPhysics(), scrollDirection: Axis.horizontal, itemCount: controller.categories.length, itemBuilder: (context, index) { return Center( child: Padding( padding: const EdgeInsets.symmetric(horizontal:…

VIEW QUESTION
Back To Top
Search