explorePanels top-level property
final
Implementation
final List<Map<String, dynamic>> explorePanels = [
{
'title': 'Overview',
'widget': const ExplorePanel(),
},
{
'title': 'Summary',
'widget': const SummaryPanel(),
},
{
'title': 'Visual',
'widget': const VisualPanel(),
},
{
'title': 'Missing',
'widget': const MissingPanel(),
},
{
'title': 'Correlation',
'widget': const CorrelationPanel(),
},
{
'title': 'Tests',
'widget': const TestsPanel(),
},
{
'title': 'Interactive',
'widget': const InteractivePanel(),
},
// TODO ADD WORDCLOUD HERE
// {
// 'title': 'Word Cloud',
// 'widget': const WordCloudPanel(),
// },
];