Skip to content

Commit c127fd2

Browse files
committed
chore: fix flutter analyze
1 parent d7783a6 commit c127fd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ class _CheckboxNodeWidgetState extends State<CheckboxNodeWidget>
8383
children: [
8484
GestureDetector(
8585
key: iconKey,
86-
child: icon,
8786
behavior: HitTestBehavior.opaque,
8887
onTap: () async {
8988
await widget.editorState.formatTextToCheckbox(
@@ -92,6 +91,7 @@ class _CheckboxNodeWidgetState extends State<CheckboxNodeWidget>
9291
textNode: widget.textNode,
9392
);
9493
},
94+
child: icon,
9595
),
9696
Flexible(
9797
child: FlowyRichText(

0 commit comments

Comments
 (0)