NiceFileManager constructor

const NiceFileManager({
  1. Key? key,
  2. required List<NiceFileItem> items,
  3. void onItemTap(
    1. NiceFileItem item
    )?,
  4. void onItemDoubleTap(
    1. NiceFileItem item
    )?,
  5. NiceFileViewMode viewMode = NiceFileViewMode.list,
  6. bool showBreadcrumb = true,
  7. String currentPath = '/',
  8. ValueChanged<String>? onPathChanged,
})

Implementation

const NiceFileManager({
  super.key,
  required this.items,
  this.onItemTap,
  this.onItemDoubleTap,
  this.viewMode = NiceFileViewMode.list,
  this.showBreadcrumb = true,
  this.currentPath = '/',
  this.onPathChanged,
});