FIPDefaultDialog constructor

const FIPDefaultDialog({
  1. Key? key,
  2. required FIPIconController controller,
  3. bool? showSearchBar,
  4. bool routedView = false,
  5. bool adaptive = false,
  6. bool? showTooltips,
  7. bool? barrierDismissible,
  8. double? iconSize,
  9. Color? iconColor,
  10. double? mainAxisSpacing,
  11. double? crossAxisSpacing,
  12. ShapeBorder? iconPickerShape,
  13. Color? backgroundColor,
  14. BoxConstraints? constraints,
  15. Widget? title,
  16. Widget? closeChild,
  17. Icon? searchIcon,
  18. String? searchHintText,
  19. Icon? searchClearIcon,
  20. SearchComparator? searchComparator,
  21. String? noResultsText,
  22. List<IconPack>? iconPackMode,
  23. Map<String, IconData>? customIconPack,
})

Implementation

const FIPDefaultDialog({
  Key? key,
  required this.controller,
  this.showSearchBar,
  this.routedView = false,
  this.adaptive = false,
  this.showTooltips,
  this.barrierDismissible,
  this.iconSize,
  this.iconColor,
  this.mainAxisSpacing,
  this.crossAxisSpacing,
  this.iconPickerShape,
  this.backgroundColor,
  this.constraints,
  this.title,
  this.closeChild,
  this.searchIcon,
  this.searchHintText,
  this.searchClearIcon,
  this.searchComparator,
  this.noResultsText,
  this.iconPackMode,
  this.customIconPack,
}) : super(key: key);