mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: rename checkbox to to-do list
This commit is contained in:
@ -47,14 +47,14 @@ final List<PopupListItem> _popupListItems = [
|
|||||||
icon: _popupListIcon('bullets'),
|
icon: _popupListIcon('bullets'),
|
||||||
handler: (editorState) => insertBulletedListAfterSelection(editorState),
|
handler: (editorState) => insertBulletedListAfterSelection(editorState),
|
||||||
),
|
),
|
||||||
|
// PopupListItem(
|
||||||
|
// text: 'Numbered list',
|
||||||
|
// keywords: ['numbered list'],
|
||||||
|
// icon: _popupListIcon('number'),
|
||||||
|
// handler: (editorState) => debugPrint('Not implement yet!'),
|
||||||
|
// ),
|
||||||
PopupListItem(
|
PopupListItem(
|
||||||
text: 'Numbered list',
|
text: 'To-do List',
|
||||||
keywords: ['numbered list'],
|
|
||||||
icon: _popupListIcon('number'),
|
|
||||||
handler: (editorState) => debugPrint('Not implement yet!'),
|
|
||||||
),
|
|
||||||
PopupListItem(
|
|
||||||
text: 'Checkboxes',
|
|
||||||
keywords: ['checkbox'],
|
keywords: ['checkbox'],
|
||||||
icon: _popupListIcon('checkbox'),
|
icon: _popupListIcon('checkbox'),
|
||||||
handler: (editorState) => insertCheckboxAfterSelection(editorState),
|
handler: (editorState) => insertCheckboxAfterSelection(editorState),
|
||||||
|
Reference in New Issue
Block a user