pull/1566/head
parent
039e3193d9
commit
35a9502d7e
31 changed files with 212 additions and 294 deletions
@ -1,28 +1,28 @@ |
|||||||
import 'package:equatable/equatable.dart'; |
// import 'package:equatable/equatable.dart'; |
||||||
import 'package:meta/meta.dart' show experimental, immutable; |
// import 'package:meta/meta.dart' show experimental, immutable; |
||||||
|
|
||||||
@immutable |
// @immutable |
||||||
@experimental |
// @experimental |
||||||
class QuillAnimationConfigurations extends Equatable { |
// class QuillAnimationConfigurations extends Equatable { |
||||||
const QuillAnimationConfigurations({ |
// const QuillAnimationConfigurations({ |
||||||
required this.checkBoxPointItem, |
// required this.checkBoxPointItem, |
||||||
}); |
// }); |
||||||
|
|
||||||
factory QuillAnimationConfigurations.disableAll() => |
// factory QuillAnimationConfigurations.disableAll() => |
||||||
const QuillAnimationConfigurations( |
// const QuillAnimationConfigurations( |
||||||
checkBoxPointItem: false, |
// checkBoxPointItem: false, |
||||||
); |
// ); |
||||||
|
|
||||||
factory QuillAnimationConfigurations.enableAll() => |
// factory QuillAnimationConfigurations.enableAll() => |
||||||
const QuillAnimationConfigurations( |
// const QuillAnimationConfigurations( |
||||||
checkBoxPointItem: true, |
// checkBoxPointItem: true, |
||||||
); |
// ); |
||||||
|
|
||||||
/// This currently has issue which the whole checkbox list will rebuilt |
// /// This currently has issue which the whole checkbox list will rebuilt |
||||||
/// and the animation will replay when some value changes |
// /// and the animation will replay when some value changes |
||||||
/// which is why disabled by default |
// /// which is why disabled by default |
||||||
final bool checkBoxPointItem; |
// final bool checkBoxPointItem; |
||||||
|
|
||||||
@override |
// @override |
||||||
List<Object?> get props => []; |
// List<Object?> get props => []; |
||||||
} |
// } |
||||||
|
Loading…
Reference in new issue