-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Have you checked for an existing issue?
- I have searched the existing issues
Flutter Quill Version
11.0.0
Steps to Reproduce
"insertImageBlock" is deprecated, no suggestion is given on its replacement. does it mean that it will be totally removed with no replacement or what?
Expected results
give a suggestion on replacement function
@Deprecated('Invalid extension method and will be removed. **use foo instead**')
void insertImageBlock({
required String imageSource,
}) {
this
..skipRequestKeyboard = true
..replaceText(
index,
length,
BlockEmbed.image(imageSource),
null,
)
..moveCursorToPosition(index + 1);
}Actual results
@Deprecated('Invalid extension method and will be removed.')
void insertImageBlock({
required String imageSource,
}) {
this
..skipRequestKeyboard = true
..replaceText(
index,
length,
BlockEmbed.image(imageSource),
null,
)
..moveCursorToPosition(index + 1);
}Additional Context
Screenshots / Video demonstration
[Attach media here]
Logs
[Paste logs here]Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working