Tag Archives: NoSuchMethodError: The method ‘>’ was called on null.

[Solved] flutter:NoSuchMethodError: The method ‘>’ was called on null.

I wrote a list and found that it would not come out, and an error was reported

flutter: Another exception was thrown: RenderBox was not laid out: _RenderScrollSemantics#81b3a relayoutBoundary=up3 NEEDS-PAINT
flutter: Another exception was thrown: ‘package:flutter/src/rendering/shifted_box.dart’: Failed assertion: line 314 pos 12: ‘child.hasSize’: is not true.
flutter: Another exception was thrown: NoSuchMethodError: The method ‘<=’ was called on null.
flutter: Another exception was thrown: NoSuchMethodError: The getter ‘visible’ was called on null.

A search revealed that a Flexible should be added inside the Column or Row to wrap the contents.

https://github.com/flutter/flutter/issues/21628

Column(
    children: <Widget>[
        Flexible(
           child: ListView(
              children: <Widget>[
                 ListTitle(leading:Icon(Icons.code),title:Text('hahaha'))
              ],
           ),
        )
    ],
)

Yes, but I don’t know why