Няма описание

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import 'package:flutter/material.dart';
  2. import 'package:photo/src/delegate/checkbox_builder_delegate.dart';
  3. import 'package:photo/src/delegate/loading_delegate.dart';
  4. import 'package:photo/src/delegate/sort_delegate.dart';
  5. class Options {
  6. final int rowCount;
  7. final int maxSelected;
  8. final double padding;
  9. final double itemRadio;
  10. final Color themeColor;
  11. final Color dividerColor;
  12. final Color textColor;
  13. final Color disableColor;
  14. final int thumbSize;
  15. final SortDelegate sortDelegate;
  16. final CheckBoxBuilderDelegate checkBoxBuilderDelegate;
  17. final LoadingDelegate loadingDelegate;
  18. const Options({
  19. this.rowCount,
  20. this.maxSelected,
  21. this.padding,
  22. this.itemRadio,
  23. this.themeColor,
  24. this.dividerColor,
  25. this.textColor,
  26. this.disableColor,
  27. this.thumbSize,
  28. this.sortDelegate,
  29. this.checkBoxBuilderDelegate,
  30. this.loadingDelegate,
  31. });
  32. }