children method

  1. @override
List<Widget> children(
  1. BuildContext context
)
override

The methode that returns the children of LeanSpacedColumn in LeanListScreen.

Implementation

@override
List<Widget> children(BuildContext context) {
  List<Widget> output = [];
  // output.add(LeanDY(y: 100));
  output.add(widget());
  // output.add(LeanContainer(child: LeanCheckbox(onPressed: (b){}, leanText: LeanText("hi"), width: 100)));

  return output;
}