explorePanels top-level property

List<Map<String, dynamic>> explorePanels
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(),
  // },
];