implement ontap for check list

pull/13/head
li3317 4 years ago
parent d8941d8a57
commit 170f3c62a7
  1. 4
      lib/widgets/controller.dart
  2. 42
      lib/widgets/text_block.dart

@ -64,6 +64,10 @@ class QuillController extends ChangeNotifier {
} }
} }
void notifyChangeListeners() {
notifyListeners();
}
void redo() { void redo() {
Tuple2 tup = document.redo(); Tuple2 tup = document.redo();
if (tup.item1) { if (tup.item1) {

@ -157,19 +157,13 @@ class EditableTextBlock extends StatelessWidget {
} }
if (attrs[Attribute.list.key] == Attribute.checked) { if (attrs[Attribute.list.key] == Attribute.checked) {
return _CheckedPoint( return _Checkbox(
style: defaultStyles.paragraph.style, style: defaultStyles.paragraph.style, width: 32, isChecked: true);
width: 32,
isChecked: true
);
} }
if (attrs[Attribute.list.key] == Attribute.unchecked) { if (attrs[Attribute.list.key] == Attribute.unchecked) {
return _CheckedPoint( return _Checkbox(
style: defaultStyles.paragraph.style, style: defaultStyles.paragraph.style, width: 32, isChecked: false);
width: 32,
isChecked: false
);
} }
if (attrs.containsKey(Attribute.codeBlock.key)) { 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 TextStyle style;
final double width; final double width;
final bool isChecked; 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 @override
_CheckedPointState createState() => _CheckedPointState(); __CheckboxState createState() => __CheckboxState();
} }
class _CheckedPointState extends State<_CheckedPoint> { class __CheckboxState extends State<_Checkbox> {
bool isChecked; bool isChecked;
void _onCheckboxClicked(bool newValue) => setState(() { void _onCheckboxClicked(bool newValue) => setState(() {
isChecked = newValue; isChecked = newValue;
if (isChecked) { if (isChecked) {
// check list // check list
} else { } else {
// uncheck list // uncheck list
} }
}); });
@override @override
void initState() { void initState() {
@ -723,7 +717,6 @@ class _CheckedPointState extends State<_CheckedPoint> {
isChecked = widget.isChecked; isChecked = widget.isChecked;
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container( return Container(
@ -736,5 +729,4 @@ class _CheckedPointState extends State<_CheckedPoint> {
padding: EdgeInsetsDirectional.only(end: 13.0), padding: EdgeInsetsDirectional.only(end: 13.0),
); );
} }
}
}

Loading…
Cancel
Save