add device filter and select time repeat widget

This commit is contained in:
mohammad
2024-08-20 16:40:51 +03:00
parent 1204563c55
commit bb959bcc61
2 changed files with 25 additions and 29 deletions

View File

@ -8,7 +8,6 @@ class DynamicTable extends StatefulWidget {
final BoxDecoration? cellDecoration;
final Size size;
final bool withCheckBox;
final void Function(bool?)? onChanged;
final void Function(bool?)? selectAll;
final void Function(int, bool?)? onRowCheckboxChanged;
@ -20,7 +19,6 @@ class DynamicTable extends StatefulWidget {
required this.withCheckBox,
this.headerDecoration,
this.cellDecoration,
this.onChanged,
this.selectAll,
this.onRowCheckboxChanged,
}) : super(key: key);