From 170f3c62a7a0d942345e856fc1f7ef7a62f55333 Mon Sep 17 00:00:00 2001 From: li3317 Date: Thu, 14 Jan 2021 20:19:36 -0500 Subject: [PATCH] implement ontap for check list --- lib/widgets/controller.dart | 4 ++++ lib/widgets/text_block.dart | 42 +++++++++++++++---------------------- 2 files changed, 21 insertions(+), 25 deletions(-) diff --git a/lib/widgets/controller.dart b/lib/widgets/controller.dart index 9ce00ca8..1f46d9b3 100644 --- a/lib/widgets/controller.dart +++ b/lib/widgets/controller.dart @@ -64,6 +64,10 @@ class QuillController extends ChangeNotifier { } } + void notifyChangeListeners() { + notifyListeners(); + } + void redo() { Tuple2 tup = document.redo(); if (tup.item1) { diff --git a/lib/widgets/text_block.dart b/lib/widgets/text_block.dart index 42fc61fe..c17df2bd 100644 --- a/lib/widgets/text_block.dart +++ b/lib/widgets/text_block.dart @@ -157,19 +157,13 @@ class EditableTextBlock extends StatelessWidget { } if (attrs[Attribute.list.key] == Attribute.checked) { - return _CheckedPoint( - style: defaultStyles.paragraph.style, - width: 32, - isChecked: true - ); + return _Checkbox( + style: defaultStyles.paragraph.style, width: 32, isChecked: true); } if (attrs[Attribute.list.key] == Attribute.unchecked) { - return _CheckedPoint( - style: defaultStyles.paragraph.style, - width: 32, - isChecked: false - ); + return _Checkbox( + style: defaultStyles.paragraph.style, width: 32, isChecked: false); } if (attrs.containsKey(Attribute.codeBlock.key)) { @@ -693,29 +687,29 @@ class _BulletPoint extends StatelessWidget { } } -class _CheckedPoint extends StatefulWidget { +class _Checkbox extends StatefulWidget { final TextStyle style; final double width; final bool isChecked; - const _CheckedPoint({Key key, this.style, this.width, this.isChecked}) : super(key: key); + const _Checkbox({Key key, this.style, this.width, this.isChecked}) + : super(key: key); @override - _CheckedPointState createState() => _CheckedPointState(); + __CheckboxState createState() => __CheckboxState(); } -class _CheckedPointState extends State<_CheckedPoint> { - +class __CheckboxState extends State<_Checkbox> { bool isChecked; void _onCheckboxClicked(bool newValue) => setState(() { - isChecked = newValue; + isChecked = newValue; - if (isChecked) { - // check list - } else { - // uncheck list - } - }); + if (isChecked) { + // check list + } else { + // uncheck list + } + }); @override void initState() { @@ -723,7 +717,6 @@ class _CheckedPointState extends State<_CheckedPoint> { isChecked = widget.isChecked; } - @override Widget build(BuildContext context) { return Container( @@ -736,5 +729,4 @@ class _CheckedPointState extends State<_CheckedPoint> { padding: EdgeInsetsDirectional.only(end: 13.0), ); } - -} \ No newline at end of file +}