I'm having difficulties getting this to run. I have studied the example code, but keep hitting the following assertion failure in the row.dart file:
assert(children is List<Widget> || children is List<ExpandableTableRow>)
Unlike the provided example, I am building the row as a List<Widget> as shown below, which seems to fail, since the debugger shows this as a List. It might be helpful to include a small example with manually generated cells versus the List<Widget>.generate( ones? I'm certain this is not a bug, but user error on my part, but I can't seem to get this to work.
I'm having difficulties getting this to run. I have studied the example code, but keep hitting the following assertion failure in the
row.dart
file:assert(children is List<Widget> || children is List<ExpandableTableRow>)
Unlike the provided example, I am building the row as a
List<Widget>
as shown below, which seems to fail, since the debugger shows this as aList
. It might be helpful to include a small example with manually generated cells versus theList<Widget>.generate(
ones? I'm certain this is not a bug, but user error on my part, but I can't seem to get this to work.