12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import 'package:flutter/material.dart';
- import 'package:photo/src/delegate/checkbox_builder_delegate.dart';
- import 'package:photo/src/delegate/loading_delegate.dart';
- import 'package:photo/src/delegate/sort_delegate.dart';
-
- class Options {
- final int rowCount;
-
- final int maxSelected;
-
- final double padding;
-
- final double itemRadio;
-
- final Color themeColor;
-
- final Color dividerColor;
-
- final Color textColor;
-
- final Color disableColor;
-
- final int thumbSize;
-
- final SortDelegate sortDelegate;
-
- final CheckBoxBuilderDelegate checkBoxBuilderDelegate;
-
- final LoadingDelegate loadingDelegate;
-
- const Options({
- this.rowCount,
- this.maxSelected,
- this.padding,
- this.itemRadio,
- this.themeColor,
- this.dividerColor,
- this.textColor,
- this.disableColor,
- this.thumbSize,
- this.sortDelegate,
- this.checkBoxBuilderDelegate,
- this.loadingDelegate,
- });
- }
|