BoxConstraints forces an infinite width (listview in a Column)

Issue I am getting an error when I add the listview builder in the column. I am getting the following error: this is my task widget page: import ‘package:cloud_firestore/cloud_firestore.dart’; import ‘package:flutter/material.dart’; import ‘package:gridview/Views/data/firestore_tasks.dart’; import ‘../Models/Task.dart’; import ‘../Views/HomeScreens/edit_task.dart’; import ‘../const/colors.dart’; import

Continue reading

Infinity scrolling in column is impossible in flutter?

Issue I use this infinite scroll library. https://pub.dev/packages/infinite_scroll_pagination infinite_scroll_pagination 4.0.0 And my infinite scroll is under the sub title text widget! like this: body: SingleChildScrollView( scrollDirection: Axis.vertical, physics: const BouncingScrollPhysics(), Column( children: [ Text("Sub title."), … PagedListView( shrinkWrap: true, physics:

Continue reading