You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
by using InlineCustomWidget we can make it inline, but I am getting one more issue on this, that is if i have custom widget in this who has inkwell, and if the custom widget comes at start of the sentence, it actually make it partially clickable for some reason.
do you have any solution for this @daohoangson
Steps to Reproduce
customWidgetBuilder: (element) {
if (element.localName == 'img') {
final src = element.attributes['src'] ?? '';
if (src.endsWith('.svg')) {
/// Return the custom SVG widget
return SvgPictureNetwork(src);
} else if (element.localName == 'svg') {
// Handle inline SVG
final svgString = element.outerHtml;
return SvgPictureNetwork(svgString);
}
}
// Return null for other elements to use default handling
return null;
},
HTML
`HtmlWidget` configuration
Tesing environment
Expected results
Actual results
The text was updated successfully, but these errors were encountered: