fix header
This commit is contained in:
parent
bb2e0e72c5
commit
d1eda26759
1 changed files with 4 additions and 2 deletions
|
@ -90,7 +90,8 @@ class _FlowsPageState extends State<FlowsPage> {
|
||||||
children: producedMapping[key]!.map((x) {
|
children: producedMapping[key]!.map((x) {
|
||||||
return flowTile(context, x);
|
return flowTile(context, x);
|
||||||
}).toList());
|
}).toList());
|
||||||
items.add(ExpandableListItem(body: flows, header: Text(key)));
|
items.add(
|
||||||
|
ExpandableListItem(body: flows, header: ListTile(title: Text(key))));
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExpandableList(items);
|
return ExpandableList(items);
|
||||||
|
@ -118,7 +119,8 @@ class _FlowsPageState extends State<FlowsPage> {
|
||||||
children: dependsMapping[key]!.map((x) {
|
children: dependsMapping[key]!.map((x) {
|
||||||
return flowTile(context, x);
|
return flowTile(context, x);
|
||||||
}).toList());
|
}).toList());
|
||||||
items.add(ExpandableListItem(body: flows, header: Text(key)));
|
items.add(
|
||||||
|
ExpandableListItem(body: flows, header: ListTile(title: Text(key))));
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExpandableList(items);
|
return ExpandableList(items);
|
||||||
|
|
Loading…
Reference in a new issue