FullScreenDialog constructor

const FullScreenDialog({
  1. Key? key,
  2. required IconController iconController,
  3. required bool? showSearchBar,
  4. required bool? showTooltips,
  5. required Color? backgroundColor,
  6. required Widget? title,
  7. required List<IconPack>? iconPackMode,
  8. required Map<String, IconData>? customIconPack,
  9. required Icon? searchIcon,
  10. required Icon? searchClearIcon,
  11. required String? searchHintText,
  12. required Color? iconColor,
  13. required String? noResultsText,
  14. required double? iconSize,
  15. required double? mainAxisSpacing,
  16. required double? crossAxisSpacing,
})

Implementation

const FullScreenDialog({
  Key? key,
  required this.iconController,
  required this.showSearchBar,
  required this.showTooltips,
  required this.backgroundColor,
  required this.title,
  required this.iconPackMode,
  required this.customIconPack,
  required this.searchIcon,
  required this.searchClearIcon,
  required this.searchHintText,
  required this.iconColor,
  required this.noResultsText,
  required this.iconSize,
  required this.mainAxisSpacing,
  required this.crossAxisSpacing,
}) : super(key: key);