Answers for "Failed assertion: line 1861 pos 16: 'constraints.hasBoundedHeight': is not true."

0

Failed assertion: line 1861 pos 16: 'constraints.hasBoundedHeight': is not true.

Container(
      height: double.maxFinite,
      child: ListView.builder(
      shrinkWrap: true,
      scrollDirection: Axis.horizontal,
      itemCount: 6,
      itemBuilder: (BuildContext context, int index) {
           return Text(
                '${index}',
                style:
                    TextStyle(color: Colors.white, fontSize: 146),
                );
      },
)),
Posted by: Guest on April-13-2021

Code answers related to "Failed assertion: line 1861 pos 16: 'constraints.hasBoundedHeight': is not true."

Browse Popular Code Answers by Language