PanelIndexScreen constructor

const PanelIndexScreen({
  1. required PanelProvider provider,
  2. required void onResourceTap(
    1. ResourceSchema resource
    ),
  3. Widget? leading(
    1. ResourceSchema resource
    )?,
  4. FilamentWidgetRegistry? widgetRegistry,
  5. PanelBodyBuilder? stateBuilder,
  6. FilamentStrings strings = const FilamentStrings(),
  7. Key? key,
})

Implementation

const PanelIndexScreen({
  required this.provider,
  required this.onResourceTap,
  this.leading,
  this.widgetRegistry,
  this.stateBuilder,
  this.strings = const FilamentStrings(),
  super.key,
});